summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/settings/SettingsProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/settings/SettingsProvider.java')
-rw-r--r--src/com/android/launcher3/settings/SettingsProvider.java13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/com/android/launcher3/settings/SettingsProvider.java b/src/com/android/launcher3/settings/SettingsProvider.java
index d9cb59305..e809a8a0d 100644
--- a/src/com/android/launcher3/settings/SettingsProvider.java
+++ b/src/com/android/launcher3/settings/SettingsProvider.java
@@ -21,7 +21,6 @@ import android.content.SharedPreferences;
public final class SettingsProvider {
public static final String SETTINGS_KEY = "trebuchet_preferences";
- public static final String SETTINGS_CHANGED = "settings_changed";
public static final String SETTINGS_UI_HOMESCREEN_DEFAULT_SCREEN_ID = "ui_homescreen_default_screen_id";
public static final String SETTINGS_UI_HOMESCREEN_SEARCH = "ui_homescreen_search";
@@ -85,6 +84,18 @@ public final class SettingsProvider {
get(context).edit().putInt(key, value).commit();
}
+ public static boolean changeBoolean(Context context, String key, int defaultRes) {
+ boolean def = context.getResources().getBoolean(defaultRes);
+ boolean val = !SettingsProvider.getBooleanCustomDefault(context, key, def);
+ putBoolean(context, key, val);
+ return val;
+ }
+
+ public static void putBoolean(Context context, String key, int res) {
+ boolean val = context.getResources().getBoolean(res);
+ putBoolean(context, key, val);
+ }
+
public static void putBoolean(Context context, String key, boolean value) {
get(context).edit().putBoolean(key, value).commit();
}