AndroidAPS/app/src/main/java/info/nightscout/androidaps/utils/SP.java

172 lines
5.8 KiB
Java
Raw Normal View History

2019-02-26 20:38:27 +01:00
package info.nightscout.androidaps.utils;
2017-02-17 16:16:20 +01:00
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import info.nightscout.androidaps.MainApp;
/**
* Created by mike on 17.02.2017.
*/
public class SP {
static SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(MainApp.instance().getApplicationContext());
static public boolean contains(String key) {
return sharedPreferences.contains(key);
}
2018-04-20 17:27:31 +02:00
static public boolean contains(int resourceId) {
return sharedPreferences.contains(MainApp.gs(resourceId));
}
2017-02-17 16:16:20 +01:00
static public String getString(int resourceID, String defaultValue) {
2018-05-02 13:32:41 +02:00
return sharedPreferences.getString(MainApp.gs(resourceID), defaultValue);
2017-02-17 16:16:20 +01:00
}
static public String getString(String key, String defaultValue) {
return sharedPreferences.getString(key, defaultValue);
}
2018-04-16 23:29:53 +02:00
static public boolean getBoolean(int resourceID, Boolean defaultValue) {
2017-02-17 16:16:20 +01:00
try {
2018-05-02 13:32:41 +02:00
return sharedPreferences.getBoolean(MainApp.gs(resourceID), defaultValue);
2017-02-17 16:16:20 +01:00
} catch (Exception e) {
return defaultValue;
}
}
2018-04-16 23:29:53 +02:00
static public boolean getBoolean(String key, Boolean defaultValue) {
2017-02-17 16:16:20 +01:00
try {
return sharedPreferences.getBoolean(key, defaultValue);
} catch (Exception e) {
return defaultValue;
}
}
static public Double getDouble(int resourceID, Double defaultValue) {
2018-05-02 13:32:41 +02:00
return SafeParse.stringToDouble(sharedPreferences.getString(MainApp.gs(resourceID), defaultValue.toString()));
2017-02-17 16:16:20 +01:00
}
static public Double getDouble(String key, Double defaultValue) {
return SafeParse.stringToDouble(sharedPreferences.getString(key, defaultValue.toString()));
}
static public int getInt(int resourceID, Integer defaultValue) {
2017-06-25 11:16:19 +02:00
try {
2018-05-02 13:32:41 +02:00
return sharedPreferences.getInt(MainApp.gs(resourceID), defaultValue);
2017-06-25 11:16:19 +02:00
} catch (Exception e) {
2018-05-02 13:32:41 +02:00
return SafeParse.stringToInt(sharedPreferences.getString(MainApp.gs(resourceID), defaultValue.toString()));
2017-06-25 11:16:19 +02:00
}
2017-02-17 16:16:20 +01:00
}
static public int getInt(String key, Integer defaultValue) {
2017-06-25 11:16:19 +02:00
try {
return sharedPreferences.getInt(key, defaultValue);
} catch (Exception e) {
return SafeParse.stringToInt(sharedPreferences.getString(key, defaultValue.toString()));
}
2017-02-17 16:16:20 +01:00
}
static public long getLong(int resourceID, Long defaultValue) {
try {
2018-05-02 13:32:41 +02:00
return sharedPreferences.getLong(MainApp.gs(resourceID), defaultValue);
} catch (Exception e) {
2018-05-02 13:32:41 +02:00
return SafeParse.stringToLong(sharedPreferences.getString(MainApp.gs(resourceID), defaultValue.toString()));
}
2017-02-17 16:16:20 +01:00
}
static public long getLong(String key, Long defaultValue) {
2017-04-05 21:39:39 +02:00
try {
return sharedPreferences.getLong(key, defaultValue);
} catch (Exception e) {
return SafeParse.stringToLong(sharedPreferences.getString(key, defaultValue.toString()));
}
2017-02-17 16:16:20 +01:00
}
static public void putBoolean(String key, boolean value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean(key, value);
editor.apply();
}
2017-02-17 18:14:33 +01:00
static public void putBoolean(int resourceID, boolean value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
2018-05-02 13:32:41 +02:00
editor.putBoolean(MainApp.gs(resourceID), value);
2017-02-17 18:14:33 +01:00
editor.apply();
}
2017-02-17 21:24:30 +01:00
2019-02-25 20:17:02 +01:00
static public void putDouble(String key, double value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(key, Double.toString(value));
editor.apply();
}
static public void putDouble(int resourceID, double value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(MainApp.gs(resourceID), Double.toString(value));
editor.apply();
2017-02-17 18:14:33 +01:00
}
2017-02-17 21:24:30 +01:00
2017-04-05 21:39:39 +02:00
static public void putLong(String key, long value) {
2017-02-17 21:24:30 +01:00
SharedPreferences.Editor editor = sharedPreferences.edit();
2017-04-05 21:39:39 +02:00
editor.putLong(key, value);
2017-02-17 21:24:30 +01:00
editor.apply();
}
2017-06-25 11:16:19 +02:00
static public void putLong(int resourceID, long value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
2018-05-02 13:32:41 +02:00
editor.putLong(MainApp.gs(resourceID), value);
2017-06-25 11:16:19 +02:00
editor.apply();
}
static public void putInt(String key, int value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putInt(key, value);
editor.apply();
}
static public void putInt(int resourceID, int value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
2018-05-02 13:32:41 +02:00
editor.putInt(MainApp.gs(resourceID), value);
2017-06-25 11:16:19 +02:00
editor.apply();
}
static public void putDouble(int resourceID, Double value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(MainApp.gs(resourceID), value.toString());
editor.apply();
}
static public void putDouble(String key, Double value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(key, value.toString());
editor.apply();
}
2017-02-17 21:24:30 +01:00
static public void putString(int resourceID, String value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
2018-05-02 13:32:41 +02:00
editor.putString(MainApp.gs(resourceID), value);
2017-02-17 21:24:30 +01:00
editor.apply();
}
2017-02-22 20:29:41 +01:00
2017-06-02 10:25:49 +02:00
static public void putString(String key, String value) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(key, value);
editor.apply();
}
2017-08-05 18:09:19 +02:00
static public void remove(int resourceID) {
2017-02-22 20:29:41 +01:00
SharedPreferences.Editor editor = sharedPreferences.edit();
2018-05-02 13:32:41 +02:00
editor.remove(MainApp.gs(resourceID));
2017-02-22 20:29:41 +01:00
editor.apply();
}
2017-08-05 18:09:19 +02:00
static public void remove(String key) {
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.remove(key);
editor.apply();
}
2017-02-17 16:16:20 +01:00
}