android default values for shared preferences

前端 未结 3 1223
走了就别回头了
走了就别回头了 2021-01-18 00:50

I am trying to understand the SharedPreferences of Android. I am a beginner and don\'t know a lot about it.

I have this class I implemented for my app Preferences

相关标签:
3条回答
  • 2021-01-18 01:30

    Simple, if you want a separate default value for each variable, you need to do it for each one, but on your method:

     public String get(String key) {
        return this.sharedPreferences.getString(key,"this is your default value");
    }
    

    If the variable was never accessed by the user or was never created, the system will set the default value as value and if you or the user changed this value, the default value is ignored. See http://developer.android.com/guide/topics/data/data-storage.html#pref

    Directly from the Android Documentation:

    The SharedPreferences class provides a general framework that allows you to save and retrieve persistent key-value pairs of primitive data types. You can use SharedPreferences to save any primitive data: booleans, floats, ints, longs, and strings. This data will persist across user sessions (even if your application is killed).

    0 讨论(0)
  • 2021-01-18 01:37

    You can store default values in string resource:

    <string name="key_name">default_value</string>
    

    and then get it as it follows:

    int ResId = context.getResources().getIdentifier(key_name, "string", context.getPackageName()));
    prefs.getString(key_name,context.getResources().getString(ResId);
    
    0 讨论(0)
  • 2021-01-18 01:45

    Could you use the default value parameter of the getX() method?

    For example, to get a String called 'username', you could use this:

    String username = prefs.getString("username_key", "DefaultUsername");
    

    You can simply define your default values in your Preferences class.

    0 讨论(0)
提交回复
热议问题