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

66 lines
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">
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="true"
android:key="audio_ducking"
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_audio_ducking"
2019-06-02 15:40:33 +05:30
android:title="@string/pref_title_audio_ducking"
2020-07-20 02:30:30 +05:30
app:icon="@drawable/ic_volume_down" />
2018-08-30 14:59:30 +05:30
<code.name.monkey.retromusic.preferences.DurationPreference
android:defaultValue="0"
android:key="audio_fade_duration"
android:layout="@layout/list_item_view"
android:summary="@string/pref_summary_audio_fade"
android:title="@string/pref_title_audio_fade" />
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
android:defaultValue="0"
android:key="cross_fade_duration"
android:layout="@layout/list_item_view_seekbar"
app:ateKey_pref_unit="s"
android:max="12"
android:summary="@string/pref_summary_cross_fade"
android:title="@string/pref_title_cross_fade"
app:showSeekBarValue="true" />
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="gapless_playback"
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_gapless_playback"
2020-01-06 11:04:09 +05:30
android:title="@string/pref_title_gapless_playback" />
2018-08-30 14:59:30 +05:30
2019-07-31 00:37:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreference
2018-07-27 18:37:33 +05:30
android:key="equalizer"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_no_title"
2019-06-02 15:40:33 +05:30
android:title="@string/equalizer"
2020-07-20 02:30:30 +05:30
app:icon="@drawable/ic_equalizer" />
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="toggle_headset"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2018-11-05 19:23:07 +05:30
android:summary="@string/pref_summary_toggle_headset"
android:title="@string/pref_title_toggle_toggle_headset"
2021-09-23 17:32:49 +05:30
app:icon="@drawable/ic_play_arrow" />
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="toggle_shuffle"
2019-11-05 00:13:54 +05:30
android:layout="@layout/list_item_view_switch"
2018-11-05 19:23:07 +05:30
android:summary="@string/pref_summary_toggle_shuffle"
android:title="@string/pref_title_toggle_toggle_shuffle"
2020-07-20 02:30:30 +05:30
app:icon="@drawable/ic_shuffle" />
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="bluetooth_playback"
android:layout="@layout/list_item_view_switch"
android:summary="@string/pref_summary_bluetooth_playback"
android:title="@string/pref_title_bluetooth_playback" />
2018-08-30 14:59:30 +05:30
</androidx.preference.PreferenceScreen>