Reorganized settings, added more options to customize the now playing screen, added gradients to make UI elements visible on light album covers, fixed a bug with cardview background, fixed typos, increased version code, synced strings,
This commit is contained in:
parent
4111d728af
commit
a87320fcc9
43 changed files with 607 additions and 135 deletions
43
app/src/main/res/xml/pref_colors.xml
Normal file
43
app/src/main/res/xml/pref_colors.xml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory android:title="@string/pref_header_colors">
|
||||
|
||||
<com.afollestad.materialdialogs.prefs.MaterialListPreference
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/pref_general_theme_list_titles"
|
||||
android:entryValues="@array/pref_general_theme_list_values"
|
||||
android:key="general_theme"
|
||||
android:negativeButtonText="@null"
|
||||
android:positiveButtonText="@null"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:title="@string/pref_title_general_theme" />
|
||||
|
||||
<com.kabouzeid.gramophone.prefs.ColorChooserPreference
|
||||
android:key="primary_color"
|
||||
android:title="@string/primary_color"
|
||||
android:summary="@string/primary_color_desc" />
|
||||
|
||||
<com.kabouzeid.gramophone.prefs.ColorChooserPreference
|
||||
android:key="accent_color"
|
||||
android:title="@string/accent_color"
|
||||
android:summary="@string/accent_color_desc" />
|
||||
|
||||
<CheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:key="colored_album_footers"
|
||||
android:title="@string/pref_title_colored_album_footers"
|
||||
android:summary="@string/pref_summary_colored_album_footers"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
||||
<com.afollestad.materialdialogs.prefs.MaterialMultiSelectListPreference
|
||||
android:key="colored_navigation_bar"
|
||||
android:entries="@array/pref_navigation_bar_color_titles"
|
||||
android:entryValues="@array/pref_navigation_bar_color_values"
|
||||
android:title="@string/pref_title_navigation_bar"
|
||||
android:summary="@string/pref_summary_colored_navigation_bar"
|
||||
android:layout="@layout/preference_custom" />
|
||||
|
||||
</com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory>
|
||||
|
||||
</PreferenceScreen>
|
||||
Loading…
Add table
Add a link
Reference in a new issue