webapp @ ウィキ
andoroidstudio4
最終更新:
webapp
-
view
/アプリ内のデータを消去する
SharedPreferences sp = getSharedPreferences("SCORE_DATA", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.remove("HIGH_WIN");//HIGH_WINを0にする
editor.remove("HIGH_LOSE");//HIGH_LOSEを0にする
editor.remove("HIGH_DRAW");//HIGH_DRAWを0にする
editor.commit();//保存する apply()でもほぼ同じように保存する
SharedPreferences sp = getSharedPreferences("SCORE_DATA", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.remove("HIGH_WIN");//HIGH_WINを0にする
editor.remove("HIGH_LOSE");//HIGH_LOSEを0にする
editor.remove("HIGH_DRAW");//HIGH_DRAWを0にする
editor.commit();//保存する apply()でもほぼ同じように保存する