How to remove some key/value pair from SharedPreferences ? I have put and I to remove that from prefs.
SharedPreferences mySPrefs = PreferenceManager.getDefaultSharedPreferences(this); SharedPreferences.Editor editor = mySPrefs.edit(); editor.remove(key); editor.apply();
Here editor is the sharedPreferences editor.
1.4m articles
1.4m replys
5 comments
57.0k users