Sharedpreferences In Android
I have used SharedPreferences to save some details in the Main Activity .Now i want to get the details in some other activity but i am not able to get them . Code to save public vo
Solution 1:
May this help you:
Buddy Change these lines in your code to get:
SharedPreferencesprefs= getSharedPreferences("shared", MODE_PRIVATE);
Stringusername= prefs.getString("username","");
Post a Comment for "Sharedpreferences In Android"