zeal4android
for Android developers
Showing posts with label
activity
.
Show all posts
Showing posts with label
activity
.
Show all posts
Tuesday, June 12, 2012
Android: SharedPreferences shared by different activities
Following code cannot be shared by different Activities:
context.
getSharedPreferences
(
"PreferenceManager"
, context.
MODE_PRIVATE
).getString(key, defaultValue);
If you save on one Activity and wants to load on the other activity, the other Activity cannot find it.
Solution:
PreferenceManager.getDefaultSharedPreferences(context).getString(key, defaultValue);
Older Posts
Home
Subscribe to:
Posts (Atom)