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

85 lines
4.1 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-12-01 20:57:01 +05:30
<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 20:57:01 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_playlists">
2020-05-23 19:23:10 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
2019-12-01 20:57:01 +05:30
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-20 02:30:30 +05:30
app:icon="@drawable/ic_playlist_add" />
2019-12-01 20:57:01 +05:30
</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 23:24:07 +05:30
2019-04-09 22:59:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
android:defaultValue="30"
android:key="filter_song"
2019-11-08 23:13:34 +05:30
android:layout="@layout/list_item_view_seekbar"
2019-04-09 22:59:48 +05:30
android:max="60"
2019-11-08 23:13:34 +05:30
android:summary="@string/pref_filter_song_summary"
2019-12-01 20:57:01 +05:30
android:title="@string/pref_filter_song_title"
2020-07-20 02:30:30 +05:30
app:icon="@drawable/ic_filter_song"
2019-04-09 22:59:48 +05:30
app:showSeekBarValue="true" />
2018-08-22 23:24:07 +05:30
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
2018-08-22 23:24:07 +05:30
android:defaultValue="false"
2018-11-05 19:23:07 +05:30
android:key="pause_on_zero_volume"
2019-11-08 23:13:34 +05:30
android:layout="@layout/list_item_view_switch"
2018-11-05 19:23:07 +05:30
android:summary="@string/pref_keep_pause_on_zero_volume_summary"
android:title="@string/pref_keep_pause_on_zero_volume_title"
2020-07-20 02:30:30 +05:30
app:icon="@drawable/ic_pause" />
2018-08-22 23:24:07 +05:30
2019-04-09 22:59:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="keep_screen_on"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2019-04-09 22:59:48 +05:30
android:summary="@string/pref_keep_screen_on_summary"
android:title="@string/pref_keep_screen_on_title"
app:icon="@drawable/ic_settings_brightness" />
2018-08-22 23:24:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="show_when_locked"
android:layout="@layout/list_item_view_switch"
android:summary="@string/pref_show_when_locked_summary"
android:title="@string/pref_show_when_locked_title"
app:icon="@drawable/ic_screen_lock_portrait" />
2019-09-18 01:06:13 +05:30
2018-08-22 23:24:07 +05:30
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2020-05-24 23:34:50 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
2020-04-24 23:41:14 +05:30
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-20 02:30:30 +05:30
app:icon="@drawable/ic_language" />
2018-08-30 14:59:30 +05:30
</androidx.preference.PreferenceScreen>