SharedPreferenceUtils

来源:互联网 发布:淘宝2017今日成交量 编辑:程序博客网 时间:2024/06/16 10:00

(转载)http://ztelovecly.cn/?p=153

package com.miaoqu.coffee_app.utils;import android.content.Context;import android.content.SharedPreferences;/** * SharedPreference工具类 * Created by Administrator on 2015/8/3. */public class SharedPreferenceUtils {    public final static String SETTING = "Setting";    public static void putValue(Context context, String key, int value) {        SharedPreferences.Editor sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE).edit();        sp.putInt(key, value);        sp.commit();    }    public static void putValue(Context context, String key, boolean value) {        SharedPreferences.Editor sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE).edit();        sp.putBoolean(key, value);        sp.commit();    }    public static void putValue(Context context, String key, String value) {        SharedPreferences.Editor sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE).edit();        sp.putString(key, value);        sp.commit();    }    public static int getValue(Context context, String key, int defValue) {        SharedPreferences sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE);        int value = sp.getInt(key, defValue);        return value;    }    public static boolean getValue(Context context, String key, boolean defValue) {        SharedPreferences sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE);        boolean value = sp.getBoolean(key, defValue);        return value;    }    public static String getValue(Context context, String key, String defValue) {        SharedPreferences sp = context.getSharedPreferences(SETTING, Context.MODE_PRIVATE);        String value = sp.getString(key, defValue);        return value;    }}


0 0
原创粉丝点击