How to remove some key/value pair from SharedPreferences?

Damir picture Damir · Nov 7, 2011 · Viewed 56.3k times · Source

How to remove some key/value pair from SharedPreferences ? I have put and I to remove that from prefs.

Answer

Yashwanth Kumar picture Yashwanth Kumar · Nov 7, 2011
SharedPreferences mySPrefs = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor = mySPrefs.edit();
editor.remove(key);
editor.apply();

Here editor is the sharedPreferences editor.