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