How To Edit Shared Preferences In An Activity Other Than The One It Is Created In?
I have created some shared preference in an activity and I want to modify it in a broadcast reciever...How can I do that??? Please help... I have tried looking but couldn't get the
Solution 1:
You should be able to do:
SharedPreferencesprefs= PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editoredit= prefs.edit();
using the context passed into the BroadcastReceiver.
Post a Comment for "How To Edit Shared Preferences In An Activity Other Than The One It Is Created In?"