web-dev-qa-db-ja.com

AndroidでSharedPreferencesを使用してブール値を保存する方法は?

ブール値を保存し、if-elseブロックで比較したい。

私の現在のロジックは次のとおりです。

boolean locked = true;
if (locked == true) {
    /* SETBoolean TO FALSE */
} else {
    Intent newActivity4 = new Intent(parent.getContext(), Tag1.class);
    startActivity(newActivity4);
}

Falseに設定されたブール変数を保存するにはどうすればよいですか?

17
basti12354
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(); 
Boolean statusLocked = prefs.edit().putBoolean("locked", true).commit();

戻り値(ステータス)を気にしない場合は、非同期であるため高速な.apply()を使用する必要があります。

prefs.edit().putBoolean("locked", true).apply();

それらを使用できるようにする

Boolean yourLocked = prefs.getBoolean("locked", false);

falseは、失敗または設定されていない場合のデフォルト値です

コードでは次のようになります。

boolean locked = true;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(); 
if (locked) { 
//maybe you want to check it by getting the sharedpreferences. Use this instead if (locked)
// if (prefs.getBoolean("locked", locked) {
   prefs.edit().putBoolean("locked", true).commit();
} else {
   startActivity(new Intent(parent.getContext(), Tag1.class));
}
49
Emanuel S