I've implemented onSharedPreferenceChanged in my main activity.

If I change the preferences in the main activity, my event fires.

If I change the preferences through my preferences screen (PreferenceActivity) my event does NOT fire when preferences are changed (because it's a separate activity and separate reference to sharedPreferences?)

Does anybody have a recommendation of how I should go about overcoming this situation?

Thanks!

EDIT1: I tried adding the event handler right in my preference activity but it never fires. The following method gets called during onCreate of my preference activity. When I change values, it never prints the message (msg() is a wrapper for Log.d).

private void registerChangeListener () {
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);

    sp.registerOnSharedPreferenceChangeListener(new OnSharedPreferenceChangeListener () {
        public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
            msg (" ***** Shared Preference Update ***** ");
            Intent i = new Intent();
            i.putExtra("KEY", key);
            i.setAction("com.gtosoft.dash.settingschanged");

            sendBroadcast(i);

            // TODO: fire off the event
        }
    });
}
link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

I use the following code in my PreferenceActivity to register (and unregister) a change listener:

public class MyActivity extends PreferenceActivity implements
    OnSharedPreferenceChangeListener {

@Override
protected void onResume() {
    super.onResume();
    // Set up a listener whenever a key changes
    getPreferenceScreen().getSharedPreferences()
            .registerOnSharedPreferenceChangeListener(this);
}

@Override
protected void onPause() {
    super.onPause();
    // Unregister the listener whenever a key changes
    getPreferenceScreen().getSharedPreferences()
            .unregisterOnSharedPreferenceChangeListener(this);
}

public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,String key) 
{
  // do stuff
}

maybe that helps...

see also SharedPreferences.onSharedPreferenceChangeListener not being called consistently

link|improve this answer
Oh man you rock! How tricky!!! My onsharedpreferencelistener was being garbage collected! So per your link, I created a long term reference (global member variable) to it and voila, it works great! – Brad Hein Sep 27 '10 at 0:59
@pivotnig When I try your code I get a compilation error. It won't accept this, this being a PreferenceActivity subclass. Is this something else in your code? – dpk Feb 25 '11 at 5:11
@dpk without telling me the error it's hard to say what's the problem. Anyway, you should make a new question for your problem. – pivotnig Feb 25 '11 at 7:38
1  
@pivotnig One of the biggest problems SO faces is fragmentation, a thousand different threads for the same problem, I think it'd be worth fixing the example code here so others can find it later. The error was something to the effect of this not being a OnSharedPreferenceChangeListener. I believe the solution is to change the PreferenceActivity definition so it implements SharedPreferences.OnSharedPreferenceChangeListener. Do you have that in your code? – dpk Feb 25 '11 at 18:26
1  
@dpk see changes – pivotnig Feb 25 '11 at 19:24
show 1 more comment
feedback

Why don't you just add a onSharedPreferenceChanged in the rest of the activities where the preferences could change?

link|improve this answer
You mean like define onSharedPreferenceChanged right in my settings activity? I did and it's not firing. – Brad Hein Sep 26 '10 at 18:10
For the record, the problem was caused by the garbage collector reclaiming my event handler. I had to create a global member reference to the event handler. – Brad Hein Sep 28 '10 at 14:37
feedback

Your Answer

 
or
required, but never shown

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