“Android Save Int” Kod odpowiedzi

Android Save Int

public void saveInt(int val, String key){
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mainActivity);
    SharedPreferences.Editor editor = prefs.edit();
    editor.putInt(key, val);
    editor.apply();
}

public int getInt(String key){
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mainActivity);
    int val = prefs.getInt(key, 0);
    return val;
}
Colorful Centipede

Odśwież się sharedPreferences wracając do Java

getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener(this);
Worried Wolverine

Android Save Int


SharedPreferences sp = getSharedPreferences("your_prefs", Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putInt("your_int_key", yourIntValue);
editor.commit();

Lucky Lemur

Odpowiedzi podobne do “Android Save Int”

Pytania podobne do “Android Save Int”

Więcej pokrewnych odpowiedzi na “Android Save Int” w Java

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

Przeglądaj inne języki kodu