Start implementing custom theme settings.

This commit is contained in:
Alex Ning
2020-03-19 12:20:23 +08:00
parent 71e22b3e36
commit 012736bff6
29 changed files with 952 additions and 42 deletions

View File

@@ -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>