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();
これで何が間違っているのか教えてください。
あらゆる種類の助けをいただければ幸いです。