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

78 lines
3.8 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-06-03 21:53:37 +05:30
2019-09-18 01:06:13 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
app:title="@string/grid_style_label">
2019-06-02 15:40:33 +05:30
<code.name.monkey.retromusic.preferences.MaterialListPreference
android:defaultValue="0"
android:entries="@array/pref_grid_style_list_titles"
android:entryValues="@array/pref_grid_style_list_values"
android:key="album_grid_style"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2019-06-02 15:40:33 +05:30
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_album_grid_style"
app:enableCopying="true"
app:icon="@drawable/ic_album_white_24dp" />
2018-08-30 14:59:30 +05:30
2019-06-02 15:40:33 +05:30
<code.name.monkey.retromusic.preferences.MaterialListPreference
android:defaultValue="0"
android:entries="@array/pref_grid_style_list_titles"
android:entryValues="@array/pref_grid_style_list_values"
android:key="artist_grid_style"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2019-06-02 15:40:33 +05:30
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_artist_grid_style"
app:enableCopying="true"
app:icon="@drawable/ic_artist_white_24dp" />
2018-08-30 14:59:30 +05:30
2019-06-02 15:40:33 +05:30
<code.name.monkey.retromusic.preferences.MaterialListPreference
android:defaultValue="0"
android:entries="@array/pref_home_grid_style_list_titles"
android:entryValues="@array/pref_home_grid_style_list_values"
android:key="home_artist_grid_style"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2019-06-02 15:40:33 +05:30
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_home_artist_grid_style"
app:enableCopying="true"
app:icon="@drawable/ic_home_white_24dp" />
2018-07-27 18:37:33 +05:30
2019-06-03 21:53:37 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="toggle_home_banner"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2019-06-03 21:53:37 +05:30
android:summary="@string/pref_summary_home_banner"
android:title="@string/pref_title_home_banner" />
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_library">
2019-07-22 20:56:37 +05:30
<code.name.monkey.retromusic.preferences.LibraryPreference
android:key="library_categories"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2019-07-22 20:56:37 +05:30
android:summary="@string/pref_summary_library_categories"
android:title="@string/library_categories"
app:enableCopying="true"
app:icon="@drawable/ic_library_music_white_24dp" />
<code.name.monkey.retromusic.preferences.MaterialListPreference
android:defaultValue="0"
android:entries="@array/pref_tab_text_mode_titles"
android:entryValues="@array/pref_tab_text_mode_values"
android:key="tab_text_mode"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view"
2019-07-22 20:56:37 +05:30
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_tab_text_mode"
app:enableCopying="true" />
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2019-06-02 15:40:33 +05:30
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2018-08-30 14:59:30 +05:30
</androidx.preference.PreferenceScreen>