package com.sidebar.pro.utils;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import com.sidebar.pro.BaseApplication;
public class SpUtil {
private static SharedPreferences sp =
PreferenceManager.getDefaultSharedPreferences(BaseApplication.getInstance());
public static void remove(String key) {
sp.edit().remove(key).commit();
}
public static void putInt(String key, int value) {
sp.edit().putInt(key, value).commit();
}
public static void putLong(String key, long value) {
sp.edit().putLong(key, value).commit();
}
public static void putString(String key, String value) {
sp.edit().putString(key, value).commit();
}
public static void putBoolean(String key, boolean value) {
sp.edit().putBoolean(key, value).commit();
}
public static void putFloat(String key, float value) {
sp.edit().putFloat(key, value)
Android---SpUtil---轻量级的数据存储
本文详细介绍了如何在Android应用中使用SpUtil进行轻量级的数据存储,包括写入、读取、删除数据等操作,适用于简单配置信息的保存,是Android开发中的常见实践。
摘要由CSDN通过智能技术生成