diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-03-29 20:03:50 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 20:03:50 +0530 |
commit | bc463f3c64ab04ae766aa2f161cce8d5f0e4b9f3 (patch) | |
tree | c509e028fac85fcee6804402e32c277084f63afa /app/src/main/res/xml/preference.xml | |
parent | 6e84ca1f3c19fc0f67f021ad43c40d7b99416d55 (diff) |
Significantly improve app theming (#679)
* Update CHANGELOG
* Use outlined box style in folder creation dialog
* Add user-facing choice for app theme
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/xml/preference.xml')
-rw-r--r-- | app/src/main/res/xml/preference.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index b1c5e4d0..31c6de5a 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -102,6 +102,13 @@ </androidx.preference.PreferenceCategory> <androidx.preference.PreferenceCategory app:title="@string/pref_general_title"> + <ListPreference + android:defaultValue="@string/app_theme_def" + android:key="app_theme" + android:entries="@array/app_theme_options" + android:entryValues="@array/app_theme_values" + android:summary="%s" + android:title="@string/theme_title" /> <androidx.preference.EditTextPreference app:defaultValue="45" app:dialogTitle="@string/pref_show_time_summary" |