This commit is contained in:
renjianbo0118
2021-03-02 23:18:48 +08:00
parent fce732a659
commit 6487f02bd1
11 changed files with 210 additions and 15 deletions

View File

@@ -0,0 +1,76 @@
/*
* Copyright (C) 2016 android@19code.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package utils;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
/**
* Create by h4de5ing 2016/5/7 007
* SharedPreferences工具
*
*/
public class SPUtils {
public static void setSP(Context context, String key, Object object) {
String type = object.getClass().getSimpleName();
String packageName = context.getPackageName();
SharedPreferences sp = context.getSharedPreferences(packageName, Context.MODE_PRIVATE);
Editor edit = sp.edit();
if ("String".equals(type)) {
edit.putString(key, (String) object);
} else if ("Integer".equals(type)) {
edit.putInt(key, (Integer) object);
} else if ("Boolean".equals(type)) {
edit.putBoolean(key, (Boolean) object);
} else if ("Float".equals(type)) {
edit.putFloat(key, (Float) object);
} else if ("Long".equals(type)) {
edit.putLong(key, (Long) object);
}
edit.apply();
}
public static Object getSp(Context context, String key, Object defaultObject) {
String type = defaultObject.getClass().getSimpleName();
String packageName = context.getPackageName();
SharedPreferences sp = context.getSharedPreferences(packageName, Context.MODE_PRIVATE);
if ("String".equals(type)) {
return sp.getString(key, (String) defaultObject);
} else if ("Integer".equals(type)) {
return sp.getInt(key, (Integer) defaultObject);
} else if ("Boolean".equals(type)) {
return sp.getBoolean(key, (Boolean) defaultObject);
} else if ("Float".equals(type)) {
return sp.getFloat(key, (Float) defaultObject);
} else if ("Long".equals(type)) {
return sp.getLong(key, (Long) defaultObject);
}
return null;
}
public static void cleanAllSP(Context context) {
String packageName = context.getPackageName();
SharedPreferences sp = context.getSharedPreferences(packageName, Context.MODE_PRIVATE);
Editor editor = sp.edit();
editor.clear();
editor.apply();
}
}