public class SharedPreferenceUtil {
private static SharedPreferenceUtil sharedPreferenceUtil;
private static SharedPreferences sharedPreferences;
private final static String KEY = "tsb_camera_config_sharepreferences";
private SharedPreferenceUtil( Context context )
{
sharedPreferences = context.getSharedPreferences( KEY , Context.MODE_PRIVATE );
}
public static SharedPreferenceUtil getInstance( Context context )
{
if ( sharedPreferenceUtil == null )
{
sharedPreferenceUtil = new SharedPreferenceUtil( context );
}
return sharedPreferenceUtil;
}
/**
* 设置String类型值
*
* @param key
* @param value
*/
public void putString( String key , String value )
{
Editor editor = sharedPreferences.edit( );
editor.putString( key , value );
editor.commit( );
}
/**
* 设置long类型值
*
* @param key
* @param value
*/
public void putLong( String key , long value )
{
Editor editor = sharedPreferences.edit( );
editor.putLong( key , value );
editor.commit( );
}
/**
* 设置int类型值
*
* @param key
* @param value
*/
public void putInt( String key , int value )
{
Editor editor = sharedPreferences.edit( );
editor.putInt( key , value );
editor.commit( );
}
/**
* 设置Boolean类型值
*
* @param key
* @param value
*/
public void putBoolean( String key , boolean value )
{
Editor editor = sharedPreferences.edit( );
editor.putBoolean( key , value );
editor.commit( );
}
/**
* 设置Float类型值
*
* @param key
* @param value
*/
public void putFloat( String key , float value )
{
Editor editor = sharedPreferences.edit( );
editor.putFloat( key , value );
editor.commit( );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为""
*
* @param key
* @return
*/
public String getString( String key )
{
return getString( key , "" );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为""
*
* @param key
* @param defaultValue
* @return
*/
public String getString( String key , String defaultValue )
{
return sharedPreferences.getString( key , defaultValue );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为false
*
* @param key
* @return
*/
public boolean getBoolean( String key )
{
return getBoolean( key , false );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为false
*
* @param key
* @param defalutValue
* @return
*/
public boolean getBoolean( String key , boolean defaultValue )
{
return sharedPreferences.getBoolean( key , defaultValue );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @return
*/
public int getInt( String key )
{
return getInt( key , 0 );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @return
*/
public int getInt( String key , int defaultValue )
{
return sharedPreferences.getInt( key , defaultValue );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @return
*/
public long getLong( String key )
{
return getLong( key , 0L );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @param defalutValue
* @return
*/
public long getLong( String key , Long defaultValue )
{
return sharedPreferences.getLong( key , defaultValue );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @return
*/
public float getFloat( String key )
{
return getFloat( key , 0f );
}
/**
* 获取key相对应的value,如果不设默认参数,默认值为0
*
* @param key
* @param defalutValue
* @return
*/
public float getFloat( String key , Float defaultValue )
{
return sharedPreferences.getFloat( key , defaultValue );
}
/** 判断是否存在此字段 */
public boolean contains( String key )
{
return sharedPreferences.contains( key );
}
/** 判断是否存在此字段 */
public boolean has( String key )
{
return sharedPreferences.contains( key );
}
/** 删除sharedPreferences文件中对应的Key和value */
public boolean remove( String key )
{
Editor editor = sharedPreferences.edit( );
editor.remove( key );
return editor.commit( );
}
}
android中对SharedPreference实现简单的封装
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在许多的项目中都会用到segment的样式实现不同类型页面、数据的选择, 很多项目中会用到多次segment的样式...
- 本文的项目地址 1.Retrofit是基于OkHttp网络请求框架的二次封装而已,懂Okhttp的小伙伴,那么Re...