上代码,这个东西用起来非常简单
/**
* 存储各种数据
* @param context 当前上下文
* @param key key值
* @param value value值
*/
public static void setData(Context context,String key,String value){
//创建对象
SharedPreferences sharedPreferences=context.getSharedPreferences("data",Context.MODE_PRIVATE);
//实例化editor对象
SharedPreferences.Editor editor =sharedPreferences.edit();
//设置值
editor.putString(key,value);
//提交数据
editor.apply();
}
/**
* 保存各种数据
* @param context 当前上下文
* @param key key值
* @return 返回获取到的内容,如果没有返回空
*/
public static String getData(Context context,String key){
return context.getSharedPreferences("data",Context.MODE_PRIVATE).getString(key,"");
}