[android-developers] How to do ssl certificate ?

2013-09-01 Thread mohammed Nuhail
Hello,
I am working on secure socket layer (ssl) ...  how to do ssl certificate ?

thanks in advance...

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] I get this error when i run the emulator , How to get rid of it ?

2013-08-22 Thread mohammed Nuhail
05-01 18:08:31.109: W/dalvikvm(15491): threadid=1: thread exiting with
uncaught exception (group=0x40a311f8)05-01 18:08:31.109:
E/AndroidRuntime(15491): FATAL EXCEPTION: main05-01 18:08:31.109:
E/AndroidRuntime(15491): java.lang.RuntimeException: Unable to
instantiate application android.app.Application:
java.lang.NullPointerException05-01 18:08:31.109:
E/AndroidRuntime(15491):at
android.app.LoadedApk.makeApplication(LoadedApk.java:482)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.app.ActivityThread.handleBindApplication(ActivityThread.java:3938)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.app.ActivityThread.access$1300(ActivityThread.java:123)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1185)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.os.Handler.dispatchMessage(Handler.java:99)05-01 18:08:31.109:
E/AndroidRuntime(15491):at
android.os.Looper.loop(Looper.java:137)05-01 18:08:31.109:
E/AndroidRuntime(15491):at
android.app.ActivityThread.main(ActivityThread.java:4424)05-01
18:08:31.109: E/AndroidRuntime(15491):at
java.lang.reflect.Method.invokeNative(Native Method)05-01
18:08:31.109: E/AndroidRuntime(15491):at
java.lang.reflect.Method.invoke(Method.java:511)05-01 18:08:31.109:
E/AndroidRuntime(15491):at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)05-01
18:08:31.109: E/AndroidRuntime(15491):at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)05-01
18:08:31.109: E/AndroidRuntime(15491):at
dalvik.system.NativeStart.main(Native Method)05-01 18:08:31.109:
E/AndroidRuntime(15491): Caused by:
java.lang.NullPointerException05-01 18:08:31.109:
E/AndroidRuntime(15491):at
android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java:362)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.app.LoadedApk.getClassLoader(LoadedApk.java:305)05-01
18:08:31.109: E/AndroidRuntime(15491):at
android.app.LoadedApk.makeApplication(LoadedApk.java:474)

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] How to send a xml file from one device to another ?

2013-05-02 Thread mohammed Nuhail
Hi
 I want to send xml file from one device to another device ? please help me
with it ..

  Thanks

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] How to enable and disable 3g ?

2013-03-09 Thread mohammed Nuhail
Hello people,
I want to enable and disable 3g programmatically on pressing single a
button..
below code only enable the 3g.
data.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
ConnectivityManager cm =
(ConnectivityManager)getSystemService(CONNECTIVITY_SERVICE);
//NetworkInfo ni = cm.getActiveNetworkInfo();

try {
Method dataMtd;
dataMtd =
ConnectivityManager.class.getDeclaredMethod("setMobileDataEnabled",
boolean.class);

Log.d("start", "ing");
if(dataMtd.isAccessible()){
dataMtd.setAccessible(false);
dataMtd.invoke(cm, false);
Log.d("data", "off");
//return;

}
else{
dataMtd.setAccessible(true);
dataMtd.invoke(cm, true);
Log.d("data", "on");
}


} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});

I want to disable it, when it is enabled ?

please help me out with this..


thanks in advance

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] How to enable and disable mobile network programmatically ?

2013-03-02 Thread mohammed Nuhail
It only enable the data connection . how to disable it ?

On Sat, Mar 2, 2013 at 1:33 PM, Manish Srivas
wrote:

> Method dataMtd =
> ConnectivityManager.class.getDeclaredMethod("setMobileDataEnabled",
> boolean.class);
> dataMtd.setAccessible(true);
> dataMtd.invoke(connectivityManager, true);
>
>
>
>  --
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] How to enable and disable mobile network programmatically ?

2013-03-01 Thread mohammed Nuhail
setMobileDataEnabled(false) is not their ..

On Sat, Mar 2, 2013 at 12:05 PM, Robert Greenwalt wrote:

>
>
> You could use ConnectivityManager.setMobileDataEnabled(false) - that will
> just take down data (and mms).
>
>
> On Fri, Mar 1, 2013 at 10:28 PM, mohammed Nuhail wrote:
>
>> Hello people,
>> I want to enable and disable mobile network programmatically while
>> pressing a button..please help me out with this..
>>
>> thanks in advance
>>
>>  --
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>  --
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] How to enable and disable mobile network programmatically ?

2013-03-01 Thread mohammed Nuhail
Hello people,
I want to enable and disable mobile network programmatically while
pressing a button..please help me out with this..

thanks in advance

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] How to create a Android Launcher ?

2012-12-22 Thread mohammed Nuhail
I want to create launcher in android ? Can any one please help me with it ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Custom theme for android ?

2012-12-15 Thread mohammed Nuhail
Hey I want to do custom theme for tablet.  please help me out with this ?
 Thanks in advance .

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android wifi file transfer ?

2012-11-25 Thread mohammed Nuhail
How to transfer a file through Wifi to another device. (any examples ). ?

thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Problem in android google play store ?

2012-11-17 Thread mohammed Nuhail
hi friends...
 I have a problem with google play store in 7inch tablet. wen i launched
that app i got this dialog message ( Unfortunately google play store has
stopped ) . please help me out with it...
thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Live streaming

2012-10-18 Thread mohammed Nuhail
send me some working example

On Thu, Oct 18, 2012 at 3:40 PM, Michael Banzon  wrote:

> I'm sure that getting help will be a lot easier if you state a real
> and actual problem based on the experiments you have conducted so far.
>
> On Thu, Oct 18, 2012 at 12:06 PM, mohammed Nuhail 
> wrote:
> > can any one help me out with Live video streaming ?
> >  thanks
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> > http://groups.google.com/group/android-developers?hl=en
>
>
>
> --
> Michael Banzon
> http://michaelbanzon.com/
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Live streaming

2012-10-18 Thread mohammed Nuhail
can any one help me out with Live video streaming ?
 thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: image passing ?

2012-09-30 Thread mohammed Nuhail
can i send jpeg image ?

On Sun, Sep 30, 2012 at 4:32 PM, skink  wrote:

>
>
> mohammed Nuhail wrote:
> > How to send a image from one activity to another activity ?
>
> in extras as a Parcelable?
>
> pskink
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] image passing ?

2012-09-30 Thread mohammed Nuhail
How to send a image from one activity to another activity ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android to add different images in imagebutton ?

2012-09-29 Thread mohammed Nuhail
Android to add different images in imagebutton of the listview ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: import a jar file ?

2012-09-27 Thread mohammed Nuhail
k , thanks

On Thu, Sep 27, 2012 at 12:51 PM, Asheesh Arya wrote:

> just do copy and paste in libs folder
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: import a jar file ?

2012-09-26 Thread mohammed Nuhail
i have to import directly to libs folder of the project .
 thanks.

On Thu, Sep 27, 2012 at 11:25 AM, Seshu  wrote:

> Right click on ur project... u ll find Build Path..
> In Build Path again u ll find configure build path.. select configure
> build path.. now u ll get a another window.
> In Right side of the window.. go to second button i.e., "Add External
> JARS". click on that buttons.. now u need 2 add ur jars files there
> and then click open button and then OK button...
>
> On Sep 27, 10:50 am, mohammed Nuhail  wrote:
> > How to import a jar file in libs folder ?
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] import a jar file ?

2012-09-26 Thread mohammed Nuhail
How to import a jar file in libs folder ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Sliding drawer

2012-09-19 Thread mohammed Nuhail
How to slide a sliding drawer from left to right ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] sending email ?

2012-09-16 Thread mohammed Nuhail
how to send email in background ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] send a email ?

2012-09-16 Thread mohammed Nuhail
How to send a mail programatically ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] sqlite database

2012-09-12 Thread mohammed Nuhail
how to insert data once in sqlite database programatically ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] insert data single time to the sqlite database programatically ?

2012-09-12 Thread mohammed Nuhail
How to insert data single time in the sqlite database with multiple reads  ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] print integer value in logcat.

2012-09-10 Thread mohammed Nuhail
How to print integer value in LogCat ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] date

2012-09-08 Thread mohammed Nuhail
for date you have to give Date as datatype

On Fri, Sep 7, 2012 at 9:28 PM, TreKing  wrote:

> On Fri, Sep 7, 2012 at 3:31 AM, Sadhna Upadhyay  > wrote:
>
>>   how to store date in sqlite and do sql query on date
>
>
> A: This is not specific to Android.
> B: http://justfuckinggoogleit.com/
>
>
> -
> TreKing  - Chicago
> transit tracking app for Android-powered devices
>
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Import excel file to sqlite database.

2012-09-08 Thread mohammed Nuhail
 How to import excel file to sqlite database to retrieve a data ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: How to encrypt a username and password ?

2012-07-09 Thread mohammed Nuhail
yea man i mean to say that only i am storing in the server. thanks!!

On Mon, Jul 9, 2012 at 1:26 PM, Ali Chousein  wrote:

> Your question is about programming in general. Anyway, this might be a
> starting point for you:
> http://developer.android.com/reference/java/security/interfaces/package-summary.html
>
> BTW, it's a very bad practice to store the username and password locally.
> You should store them on your server instead.
>
> -
> Ali Chousein
> https://play.google.com/store/apps/details?id=com.apps.social_nav
> https://play.google.com/store/apps/details?id=com.apps.weather_buddy
> http://www.paygol.com/android/implementation
>
>
> On Monday, July 9, 2012 6:21:31 AM UTC+2, mohammed Nuhail wrote:
>>
>> I am doing chat Application in Android... I have to encrypt and decrypt
>> username and password and stored it in database.
>>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] How to encrypt a username and password ?

2012-07-08 Thread mohammed Nuhail
I am doing chat Application in Android... I have to encrypt and decrypt
username and password and stored it in database.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Passing Object

2012-07-01 Thread mohammed Nuhail
i have tried this its not workin.  i think that is use to pass the string
between activity.
On Fri, Jun 29, 2012 at 2:23 PM, dEEPESH PPM  wrote:

> Use this,
>
> Intent i = new Intent(CurrentActivity.this, NextActivity.class);
> i.putExtra("key", object);
> intent.startActivity(i);
>
> On Tue, Jun 26, 2012 at 12:54 PM, mohammed Nuhail wrote:
>
>> How to pass the object from one activity to another ?
>>
>>  --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Passing Object

2012-06-29 Thread mohammed Nuhail
How to pass the object from one activity to another ?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en