Update existing Preference-item in a PreferenceActivity upon returning from a (sub)PreferenceScreen

Posted by aioobe on Stack Overflow See other posts from Stack Overflow or by aioobe
Published on 2010-04-12T20:34:35Z Indexed on 2010/05/02 5:47 UTC
Read the original article Hit count: 400

I have a PreferenceActivity with a bunch of (Sub)PreferenceScreens. Each such (Sub)PreferenceScreen represents an account and has the account-username as its title.

PreferenceScreen root = mgr.createPreferenceScreen(this);
for (MyAccountClass account : myAccounts) {
    final PreferenceScreen accScreen = mgr.createPreferenceScreen(this);

    accScreen.setTitle(account.getUsername());

    // add Preferences to the accScreen
    // (for instance a "change username"-preference)
    ...

    root.add(accScreen);
}

As the user enters sub-PreferenceScreen, and edits the account user-name, I want the outer PreferenceScreen to update it's PreferenceScreen-title for the account in question.

I've tried to add...

usernamePref.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
    public boolean onPreferenceChange(Preference preference, Object newValue) {
        accScreen.setTitle(newValue.toString());
        return true;
    }
});

...but the accScreen.setTitle does not seem to take effect on the outer PreferenceScreen. I've note that calling onContentChanged(); actually makes it work, but I realize that this is probably not the preferred way of doing it.

I suspect I should call postInvalidate() on some view somewhere, but I really can't figure out on what view and when to do it.

http://stackoverflow.com/questions/2396153/preferencescreen-androidsummary-update may be experiening the same problem as me.

Any help appreciated.

© Stack Overflow or respective owner

Related posts about android

Related posts about preferenceactivity