what kind of data types can be saved in sharedpreferences code example

Example 1: get preference value android

boolean mBoolean = PreferenceManager.getDefaultSharedPreferences(yourContext).getBoolean(key, defaultValue); //getBoolean will return defaultValue is key isn't found
//you can also use getInt, getFloat, getLong, getString, getStringSet and change the variable type, of course

Example 2: refresh sharedpreferences going back java

getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener(this);

Example 3: set preference value android

boolean committed = PreferenceManager.getDefaultSharedPreferences(yourContext).edit().putBoolean(key, mValue).commit();
//you can also use putInt, putFloat, putLong, putString, putStringSet and change the value of mValue
//committed is true if everything went alright, false if there was an error

Tags:

Misc Example