public class SharePreferenceUtils {
private static final String SHARE_FILE_NAME ="Meet";
public static void putString(Context context,String key,String value){
SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
editor.putString(key,value);
editor.commit(); }
public static String getString(Context context,String key,String defaultValue){
return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getString(key,defaultValue);
}
public static void putInt(Context context,String key,int value){
SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
editor.putInt(key,value);
editor.commit(); }
public static int getInt(Context context, String key, int defaultValue){
return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getInt(key,defaultValue);
}
public static void putBoolean(Context context,String key,boolean value){
SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
editor.putBoolean(key,value);
editor.commit();
}
public static boolean getBoolean(Context context,String key,boolean defaultValue){
return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getBoolean(key,defaultValue);
}
public static void deleSahre(Context context,String key){
SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
editor.remove(key);
editor.commit();
}
public static void clearAll(Context context){
SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
editor.clear();
editor.commit();
}
}
SharePreferenes工具类的封装
本文介绍了一个用于操作Android SharedPreferences的实用工具类SharePreferenceUtils。该工具类提供了字符串、整型、布尔值的存取方法,以及删除特定键值和清空所有数据的功能。通过使用这个工具类,开发者可以更方便地在应用程序中保存和读取用户设置或其他轻量级数据。
摘要由CSDN通过智能技术生成