public class PreferencesUtils {
private Context context;
public PreferencesUtils(Context context) {
this.context = context;
}
public boolean putInt(String key, int value) {
boolean flag = context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).edit().putInt(key, value).commit();
return flag;
}
public int getInt(String key, int defValue) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).getInt(key, defValue);
}
public boolean putLong(String key, long value) {
boolean flag = context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).edit().putLong(key, value).commit();
return flag;
}
public long getLong(String key, long defValue) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).getLong(key, defValue);
}
public boolean putString(String key, String value) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).edit().putString(key, value).commit();
}
public String getString(String key, String defValue) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).getString(key, defValue);
}
public boolean putBoolean(String key, boolean value) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).edit().putBoolean(key, value).commit();
}
public boolean getBoolean(String key, boolean defValue) {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).getBoolean(key, defValue);
}
public boolean clearAllValue() {
return context.getSharedPreferences(Constant.PREFERENCE_NAME, Context.MODE_PRIVATE).edit().clear().commit();
}
}
PreferencesUtils工具类,简化preference操作
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 初衷 众所周知,在OC时代,MJ大神使用一句宏定义MJCodingImplementation就搞定了归解档中繁琐...
- 封装了增删改查功能适用于MySQL、Oracle、SQLServer、DB2、Sybase、JTDS、Postgr...
- EasyDB 基于ORMLite封装的数据库操作工具类——致力于最简洁的数据库操作API 功能点 支持自定义数据库...