文件名称:安卓自定义SP用来储存数据
文件大小:2KB
文件格式:JAVA
更新时间:2019-02-01 07:32:55
自定义SP
向首选项中存取数据(仅限于String,Integer,Boolean) public static void put(Context context,String key,Object value){ SharedPreferences sp = getSharedPreference(context); SharedPreferences.Editor editor = sp.edit(); if(value instanceof String){ editor.putString(key, (String) value); }else if(value instanceof Integer){ editor.putInt(key, (Integer) value); }else if(value instanceof Boolean){ editor.putBoolean(key, (Boolean) value); } editor.commit(); }