zeal4android
for Android developers
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);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment