PlayerAndroid/app/src/main/res/xml/pref_advanced.xml

77 lines
3.7 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 09:29:30 +00:00
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2019-12-01 15:27:01 +00:00
<code.name.monkey.retromusic.preferences.BlacklistPreference
android:key="blacklist"
android:layout="@layout/list_item_view"
android:summary="@string/pref_summary_blacklist"
android:title="@string/pref_header_blacklist"
app:icon="@drawable/ic_music_note_off" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="whitelist_music"
android:layout="@layout/list_item_view_switch"
android:summary="@string/pref_summary_whitelist"
android:title="@string/pref_title_whitelist" />
2019-12-01 15:27:01 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_playlists">
2020-05-23 13:53:10 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
2019-12-01 15:27:01 +00:00
android:defaultValue="this_month"
android:entries="@array/pref_playlists_last_added_interval_titles"
android:entryValues="@array/pref_playlists_last_added_interval_values"
android:key="last_added_interval"
android:layout="@layout/list_item_view"
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_last_added_interval"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_playlist_add" />
2019-12-01 15:27:01 +00:00
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_advanced">
2018-08-22 17:54:07 +00:00
2019-04-09 17:29:48 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
android:defaultValue="30"
android:key="filter_song"
2019-11-08 17:43:34 +00:00
android:layout="@layout/list_item_view_seekbar"
2019-04-09 17:29:48 +00:00
android:max="60"
2019-11-08 17:43:34 +00:00
android:summary="@string/pref_filter_song_summary"
2019-12-01 15:27:01 +00:00
android:title="@string/pref_filter_song_title"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_filter_song"
2019-04-09 17:29:48 +00:00
app:showSeekBarValue="true" />
2018-08-22 17:54:07 +00:00
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
2018-08-22 17:54:07 +00:00
android:defaultValue="false"
2018-11-05 13:53:07 +00:00
android:key="pause_on_zero_volume"
2019-11-08 17:43:34 +00:00
android:layout="@layout/list_item_view_switch"
2018-11-05 13:53:07 +00:00
android:summary="@string/pref_keep_pause_on_zero_volume_summary"
android:title="@string/pref_keep_pause_on_zero_volume_title"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_pause" />
2018-08-22 17:54:07 +00:00
2019-04-09 17:29:48 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="keep_screen_on"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view_switch"
2019-04-09 17:29:48 +00:00
android:summary="@string/pref_keep_screen_on_summary"
android:title="@string/pref_keep_screen_on_title"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_settings_brigntness" />
2018-08-22 17:54:07 +00:00
2019-09-17 19:36:13 +00:00
2018-08-22 17:54:07 +00:00
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2020-05-24 18:04:50 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
2020-04-24 18:11:14 +00:00
android:defaultValue="auto"
android:entries="@array/pref_language_names"
android:entryValues="@array/pref_language_codes"
android:key="language_name"
android:layout="@layout/list_item_view"
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_language_name"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_language" />
2018-08-30 09:29:30 +00:00
</androidx.preference.PreferenceScreen>