我无法SharedPreferences
在点击事件时从应用程序中删除。
这是我将值存储到 UserInfoActivity 的方式SharedPreferences
:
SharedPreferences notificationCountSP = PreferenceManager
.getDefaultSharedPreferences(getApplicationContext());
SharedPreferences.Editor notificationEditor = perkBalance.edit();
notificationEditor.putString("notificationCount",notificationCountValue);
notificationEditor.commit();
这是我试图SharedPreferences
从 MainActivity 清除所有数据的方式:
SharedPreferences clearNotificationSP = getSharedPreferences(
"notificationCountSP", 0);
SharedPreferences.Editor editor = clearNotificationSP.edit();
editor.remove("notificationCount");
editor.clear();
editor.commit();
请告诉我我做错了什么。
任何形式的帮助将不胜感激。