54 lines
1.7 KiB
Java
54 lines
1.7 KiB
Java
package com.github.catvod.utils;
|
|
|
|
import static android.content.Context.MODE_PRIVATE;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import com.github.catvod.spider.Init;
|
|
|
|
public class Prefers {
|
|
|
|
private static SharedPreferences getPrefers() {
|
|
return Init.context().getSharedPreferences(Init.context().getPackageName() + "_preferences", MODE_PRIVATE);
|
|
}
|
|
|
|
public static String getString(String key, String defaultValue) {
|
|
return getPrefers().getString(key, defaultValue);
|
|
}
|
|
|
|
public static String getString(String key) {
|
|
return getString(key, "");
|
|
}
|
|
|
|
public static int getInt(String key, int defaultValue) {
|
|
return getPrefers().getInt(key, defaultValue);
|
|
}
|
|
|
|
public static int getInt(String key) {
|
|
return getInt(key, 0);
|
|
}
|
|
|
|
public static boolean getBoolean(String key, boolean defaultValue) {
|
|
return getPrefers().getBoolean(key, defaultValue);
|
|
}
|
|
|
|
public static boolean getBoolean(String key) {
|
|
return getPrefers().getBoolean(key, false);
|
|
}
|
|
|
|
public static void put(String key, Object obj) {
|
|
if (obj == null) return;
|
|
if (obj instanceof String) {
|
|
getPrefers().edit().putString(key, (String) obj).apply();
|
|
} else if (obj instanceof Boolean) {
|
|
getPrefers().edit().putBoolean(key, (Boolean) obj).apply();
|
|
} else if (obj instanceof Float) {
|
|
getPrefers().edit().putFloat(key, (Float) obj).apply();
|
|
} else if (obj instanceof Integer) {
|
|
getPrefers().edit().putInt(key, (Integer) obj).apply();
|
|
} else if (obj instanceof Long) {
|
|
getPrefers().edit().putLong(key, (Long) obj).apply();
|
|
}
|
|
}
|
|
}
|