“Uzyskaj wartość preferencji Android” Kod odpowiedzi

Uzyskaj wartość preferencji Android

boolean mBoolean = PreferenceManager.getDefaultSharedPreferences(yourContext).getBoolean(key, defaultValue); //getBoolean will return defaultValue is key isn't found
//you can also use getInt, getFloat, getLong, getString, getStringSet and change the variable type, of course
Fedeboss

Ustaw wartość preferencji Android

boolean committed = PreferenceManager.getDefaultSharedPreferences(yourContext).edit().putBoolean(key, mValue).commit();
//you can also use putInt, putFloat, putLong, putString, putStringSet and change the value of mValue
//committed is true if everything went alright, false if there was an error
Fedeboss

Odpowiedzi podobne do “Uzyskaj wartość preferencji Android”

Pytania podobne do “Uzyskaj wartość preferencji Android”

Więcej pokrewnych odpowiedzi na “Uzyskaj wartość preferencji Android” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu