码迷,mamicode.com
首页 > 其他好文 > 详细

配置文件之SharedPreferences

时间:2015-09-21 19:19:10      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

新建配置文件类

/**
 * Created by RongGuang 
 * 应用程序配置信息
 */
public class AppOption {
    public static final String APP_OPTION_VERSION="version";
    public static final String APP_OPTION_SERVER="server";
    public static final String APP_OPTION_STATE="state";
    public static final String APP_OPTION_USER="user";
    public static final String APP_OPTION_PASSWORD="password";

    private SharedPreferences sharedPreferences;
    private SharedPreferences.Editor editor;

    public AppOption() {
        this.sharedPreferences = net.andy.com.Application.getContext().getSharedPreferences("boiling.option", Context.MODE_PRIVATE);
        this.editor = this.sharedPreferences.edit();
    }

    public String getOption(String key){
        return sharedPreferences.getString(key,"");
    }

    public void setOption(String key,String value){
        editor.putString(key, value);
        editor.apply();
    }

}

在相应的位置引用对象和方法即可。

 appOption.setOption(AppOption.APP_OPTION_USER, userId.getText().toString());
                            appOption.setOption(AppOption.APP_OPTION_PASSWORD, password.getText().toString());

 

配置文件之SharedPreferences

标签:

原文地址:http://www.cnblogs.com/rongguang/p/4826942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!