예제 #1
0
 public static boolean getBoolean(String key, boolean defValue) {
   return BaseApplication.getSp().getBoolean(key, defValue);
 }
예제 #2
0
 public static int getInt(String key, int defValue) {
   return BaseApplication.getSp().getInt(key, defValue);
 }
예제 #3
0
 public static String getString(String key, String defValue) {
   return BaseApplication.getSp().getString(key, defValue);
 }
예제 #4
0
 private static Editor getEdit() {
   return BaseApplication.getSp().edit();
 }