RetroMusicPlayer/app/src/main/res/xml/pref_general.xml

65 lines
3.3 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 14:59:30 +05:30
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2019-09-18 01:06:13 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_general">
2019-11-05 00:13:54 +05:30
2019-09-03 23:24:14 +05:30
<code.name.monkey.retromusic.preferences.MaterialListPreference
2018-12-25 20:28:47 +05:30
android:defaultValue="dark"
2018-07-27 18:37:33 +05:30
android:entries="@array/pref_general_theme_list_titles"
android:entryValues="@array/pref_general_theme_list_values"
android:key="general_theme"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2018-08-30 14:59:30 +05:30
android:title="@string/pref_title_general_theme"
2019-06-02 15:40:33 +05:30
app:icon="@drawable/ic_color_lens_white_24dp" />
2019-09-28 23:22:49 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:key="black_theme"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch_no_title"
2020-01-06 11:04:09 +05:30
android:title="@string/black_theme_name" />
2019-09-28 23:22:49 +05:30
2018-07-27 18:37:33 +05:30
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2019-07-31 01:50:01 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:key="category_color"
2019-09-28 23:22:49 +05:30
android:layout="@layout/preference_category_title"
2019-07-31 01:50:01 +05:30
android:title="@string/colors">
2019-10-12 12:11:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEColorPreference
android:key="accent_color"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
android:persistent="false"
android:summary="@string/accent_color_desc"
android:title="@string/accent_color"
app:icon="@drawable/ic_colorize_white_24dp" />
2018-08-30 14:59:30 +05:30
2019-10-12 12:11:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="desaturated_color"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2019-11-04 21:56:18 +05:30
android:summary="@string/pref_summary_desaturated_color"
2020-01-06 11:04:09 +05:30
android:title="@string/pref_title_desaturated_color" />
2019-10-12 12:11:48 +05:30
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="adaptive_color_app"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2018-07-27 18:37:33 +05:30
android:summary="@string/pref_summary_colored_app"
2020-01-06 11:04:09 +05:30
android:title="@string/pref_title_colored_app" />
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="should_color_app_shortcuts"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2018-07-27 18:37:33 +05:30
android:summary="@string/pref_summary_colored_app_shortcuts"
2020-01-06 11:04:09 +05:30
android:title="@string/pref_title_app_shortcuts" />
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="dominant_color"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2018-07-27 18:37:33 +05:30
android:summary="@string/pref_summary_dominant_color"
2020-01-06 11:04:09 +05:30
android:title="@string/pref_title_toggle_dominant_color" />
2019-07-31 01:50:01 +05:30
2018-07-27 18:37:33 +05:30
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2018-08-30 14:59:30 +05:30
</androidx.preference.PreferenceScreen>