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

94 lines
4.5 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">
2018-07-27 13:07:33 +00:00
<code.name.monkey.retromusic.preferences.NowPlayingScreenPreference
android:key="now_playing_screen_id"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view"
2018-08-30 09:29:30 +00:00
android:title="@string/pref_title_now_playing_screen_appearance"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_play_circle_filled" />
2018-08-30 09:29:30 +00:00
2020-01-17 17:19:06 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="extra_song_info"
android:layout="@layout/list_item_view_switch"
android:summary="@string/pref_summary_extra_song_info"
android:title="@string/pref_title_extra_song_info" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="show_lyrics"
android:layout="@layout/list_item_view_switch"
android:summary="@string/pref_summary_show_lyrics"
android:title="@string/pref_title_show_lyrics" />
2019-09-17 19:36:13 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_album">
2019-11-04 18:43:54 +00:00
2019-07-30 19:07:48 +00:00
<code.name.monkey.retromusic.preferences.AlbumCoverStylePreference
android:key="album_cover_style_id"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view"
2019-07-30 19:07:48 +00:00
android:title="@string/pref_title_album_cover_style"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_image" />
2018-07-27 13:07:33 +00:00
2020-05-24 18:04:50 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEListPreference
2019-07-30 19:07:48 +00:00
android:defaultValue="0"
android:entries="@array/pref_album_cover_transform_entities"
android:entryValues="@array/pref_album_cover_transform_values"
android:key="album_cover_transform"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view"
2020-01-06 05:34:09 +00:00
android:title="@string/pref_title_album_cover_transform" />
2018-09-23 10:04:43 +00:00
2019-07-30 19:07:48 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view_switch"
2019-07-30 19:07:48 +00:00
app:defaultValue="false"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_view_carousel"
2019-07-30 19:07:48 +00:00
app:key="carousel_effect"
app:summary="@string/pref_summary_carousel_effect"
app:title="@string/pref_title_toggle_carousel_effect" />
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2019-04-20 10:05:31 +00:00
2019-09-17 19:36:13 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
android:layout="@layout/preference_category_title"
android:title="@string/pref_header_controls">
2019-11-04 18:43:54 +00:00
2019-07-30 19:07:48 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view_switch"
2019-07-30 19:07:48 +00:00
app:defaultValue="false"
2021-09-23 12:02:49 +00:00
app:icon="@drawable/ic_play_arrow"
2019-07-30 19:07:48 +00:00
app:key="toggle_add_controls"
app:summary="@string/pref_summary_extra_controls"
app:title="@string/pref_title_extra_controls" />
2019-04-20 10:05:31 +00:00
2019-09-17 19:36:13 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
2019-11-08 17:07:56 +00:00
android:layout="@layout/list_item_view_switch"
2019-09-17 19:36:13 +00:00
app:defaultValue="false"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_volume_up"
2019-09-17 19:36:13 +00:00
app:key="toggle_volume"
app:summary="@string/pref_summary_toggle_volume"
app:title="@string/pref_title_toggle_volume" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:layout="@layout/list_item_view_switch"
app:defaultValue="false"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_expand_less"
app:key="expand_now_playing_panel"
app:summary="@string/pref_summary_expand_now_playing_panel"
app:title="@string/pref_title_expand_now_playing_panel" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
android:defaultValue="12"
android:key="new_blur_amount"
android:layout="@layout/list_item_view_seekbar"
android:max="25"
android:summary="@string/pref_blur_amount_summary"
android:title="@string/pref_blur_amount_title"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_blur_on"
app:ateKey_pref_unit="px"
app:showSeekBarValue="true" />
2019-07-30 19:07:48 +00:00
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
2018-08-30 09:29:30 +00:00
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</androidx.preference.PreferenceScreen>