SharedPreferences sharedPref = getSharedPreferences("myPreferences", Context.MODE_PRIVATE); SharedPreferences.Editor editor = sharedPref.edit(); editor.remove("UserName"); editor.apply();
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this); SharedPreferences.Editor editor = sharedPref.edit(); editor.remove("IsLoggedIn"); editor.apply();In this example, the "IsLoggedIn" preference value is being removed from the default SharedPreferences object. The android.content.SharedPreferences.Editor remove method is part of the android.content package library.