summaryrefslogtreecommitdiff
path: root/src/com/android/customization/module/DefaultCustomizationPreferences.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/customization/module/DefaultCustomizationPreferences.kt')
-rw-r--r--src/com/android/customization/module/DefaultCustomizationPreferences.kt56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/com/android/customization/module/DefaultCustomizationPreferences.kt b/src/com/android/customization/module/DefaultCustomizationPreferences.kt
new file mode 100644
index 00000000..49fd1a94
--- /dev/null
+++ b/src/com/android/customization/module/DefaultCustomizationPreferences.kt
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.customization.module
+
+import android.content.Context
+import com.android.wallpaper.module.DefaultWallpaperPreferences
+
+open class DefaultCustomizationPreferences(context: Context) :
+ DefaultWallpaperPreferences(context), CustomizationPreferences {
+
+ override fun getSerializedCustomThemes(): String? {
+ return sharedPrefs.getString(CustomizationPreferences.KEY_CUSTOM_THEME, null)
+ }
+
+ override fun storeCustomThemes(serializedCustomThemes: String) {
+ sharedPrefs
+ .edit()
+ .putString(CustomizationPreferences.KEY_CUSTOM_THEME, serializedCustomThemes)
+ .apply()
+ }
+
+ override fun getTabVisited(id: String): Boolean {
+ return sharedPrefs.getBoolean(CustomizationPreferences.KEY_VISITED_PREFIX + id, false)
+ }
+
+ override fun setTabVisited(id: String) {
+ sharedPrefs
+ .edit()
+ .putBoolean(CustomizationPreferences.KEY_VISITED_PREFIX + id, true)
+ .apply()
+ }
+
+ override fun getThemedIconEnabled(): Boolean {
+ return sharedPrefs.getBoolean(CustomizationPreferences.KEY_THEMED_ICON_ENABLED, false)
+ }
+
+ override fun setThemedIconEnabled(enabled: Boolean) {
+ sharedPrefs
+ .edit()
+ .putBoolean(CustomizationPreferences.KEY_THEMED_ICON_ENABLED, enabled)
+ .apply()
+ }
+}