I created a ringtonePreference that will list all the ringtone in the phone. I need to set the summary of that ringtonepreference to the corresponding ringtone name selected.

I tried to use Onsharedpreference change listener but does'nt work.

public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
        String key) {

     Preference pref = findPreference(key);
if(pref instanceof RingtonePreference)
        {
            RingtonePreference tone_p = (RingtonePreference) pref;
            pref.setSummary(tone_p.getRingtoneType());
        }
}
link|improve this question

1  
This worked for me: [RingtonePreference not firing onSharedPreferenceChanged][1] [1]: stackoverflow.com/questions/6725105/… – xtem May 6 at 9:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.