SharedPreferences的基本用法

Retrieve and hold the contents of the preferences file 'name', returning a SharedPreferences through
 which you can retrieve and modify its values. Only one instance of the SharedPreferences object is
 returned to any callers for the same name, meaning they will see each other's edits as soon as they are
 made.
Overrides: getSharedPreferences(...) in Context
Parameters:
    name Desired preferences file. If a preferences file by this name does not exist, it will be created
     when you retrieve an editor (SharedPreferences.edit()) and then commit changes (Editor.commit()).
    mode Operating mode. Use 0 or MODE_PRIVATE for the default operation.
Returns:
     The single SharedPreferences instance that can be used to retrieve and modify the preference
      values.
    public SharedPreferences getSharedPreferences(String name, int mode) {
        return mBase.getSharedPreferences(name, mode);

    }

1.context.getSharedPreferences(String name, int mode);//首次使用会创建一个文件,之后就使用这个,如果String一样的话。

2.如果要获取键值,直接用SharedPreferences#getBoolean(value, defValue);等方法。但是需要注意对应value键的值可能不是boolean,就会抛ClassCastException

3.如果要编辑,就要使用SharedPreference#edit()返回的SharedPreference.Editor。然后使用Editor#putBoolean(key,value);

4.最后如果编辑了,需要Editor#commit();

使用完后,并不需要任何显性的释放工作。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值