Whenever I try to add this line it crashes my app. Am I not putting it in the right spot?

    preferences.registerOnSharedPreferenceChangeListener(myActivity.this);

Here is my class

    class Simulation extends View {
              //I declare my program variables here
              public Simulation(Context context) {
                   super(context);
                   SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context); //get the preferences
                   preferences.registerOnSharedPreferenceChangeListener(myActivity.this);
                   String storedPreference = preferences.getString("nPref", "0");

              }
              public void onSharedPreferenceChanged (SharedPreferences sharedPreferences, String key){
                   Log.i(TAG,"preferences changed!");
              }
         }

Thanks!

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

Do like this

 SharedPreferences.OnSharedPreferenceChangeListener prefListener = new SharedPreferences.OnSharedPreferenceChangeListener() {
            public void onSharedPreferenceChanged(SharedPreferences prefs,String key) {
    if (key.equals("date")) 
                {
                } 

     }

and

preferences.registerOnSharedPreferenceChangeListener(prefListener);
link|improve this answer
Thanks it worked great! – unknownone Aug 11 '11 at 22:46
You are welcome – Rasel Aug 12 '11 at 2:55
Excellent and elegant. Didn't know this existed. Works perfectly. +1 and thanks. – Shawn Jan 9 at 1:55
feedback

One note about the Answer, the prefListener needs to be a class field, not a local variable or it may get garbage collected.

SharedPreferences.onSharedPreferenceChangeListener not being called consistently

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.