summaryrefslogtreecommitdiff
path: root/src/com/android/customization/module/DefaultCustomizationPreferences.kt
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2024-03-06 09:30:06 -0800
committerXin Li <delphij@google.com>2024-03-06 09:30:06 -0800
commit0a19d853fa8042e184788c2da2ed7d3b889b165a (patch)
treef86037efa286448f802ffcc1fce929e01f5bbe02 /src/com/android/customization/module/DefaultCustomizationPreferences.kt
parente97783b38925690aba7633c21effa56fbc2e0070 (diff)
parente224e186edb36908ad02a1cbaf338614ce5c7d69 (diff)
downloadThemePicker-master.tar.gz
Merge Android 14 QPR2 to AOSP mainHEADmastermain
Bug: 319669529 Merged-In: I08772f7df3f3c78e2b7c94bcadce1e0784255a77 Change-Id: I964ee4c686efede980f593364e4de38e3330eba0
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()
+ }
+}