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());
}
}