diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-03-19 04:20:23 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-03-19 04:20:23 +0000 |
commit | 012736bff62005c8c61f5844529fc5216af1e885 (patch) | |
tree | 61b483701631faabd73693483be9fff098042244 /app/src/main/res/xml | |
parent | 71e22b3e364c75400ef380df1d53a83f9dbd3a1b (diff) | |
download | infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar.gz infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar.bz2 infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar.lz infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar.xz infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.tar.zst infinity-for-reddit-012736bff62005c8c61f5844529fc5216af1e885.zip |
Start implementing custom theme settings.
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/theme_preferences.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/res/xml/theme_preferences.xml b/app/src/main/res/xml/theme_preferences.xml index 038485e0..e7d9c13f 100644 --- a/app/src/main/res/xml/theme_preferences.xml +++ b/app/src/main/res/xml/theme_preferences.xml @@ -15,4 +15,22 @@ app:key="amoled_dark" app:title="@string/settings_amoled_dark_title" /> + <PreferenceCategory + app:title="@string/settings_category_customization_title" /> + + <Preference + app:key="customize_light_theme" + app:icon="@drawable/ic_light_theme_preference_24dp" + app:title="@string/settings_customize_light_theme_title" /> + + <Preference + app:key="customize_dark_theme" + app:icon="@drawable/ic_dark_theme_preference_24dp" + app:title="@string/settings_customize_dark_theme_title" /> + + <Preference + app:key="customize_amoled_theme" + app:icon="@drawable/ic_dark_theme_preference_24dp" + app:title="@string/settings_customize_amoled_theme_title" /> + </PreferenceScreen>
\ No newline at end of file |