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

42 lines
1.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">
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="true"
android:key="audio_ducking"
android:summary="@string/pref_summary_audio_ducking"
2019-06-02 15:40:33 +05:30
android:title="@string/pref_title_audio_ducking"
app:enableCopying="true"
app:icon="@drawable/ic_volume_down_white_24dp" />
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="gapless_playback"
android:summary="@string/pref_summary_gapless_playback"
2019-06-02 15:40:33 +05:30
android:title="@string/pref_title_gapless_playback"
app:enableCopying="true" />
2018-08-30 14:59:30 +05:30
2019-07-31 00:37:48 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreference
app:icon="@drawable/ic_equalizer_white_24dp"
2018-07-27 18:37:33 +05:30
android:key="equalizer"
2019-06-02 15:40:33 +05:30
android:title="@string/equalizer"
app:enableCopying="true" />
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"
android:summary="@string/pref_summary_toggle_headset"
android:title="@string/pref_title_toggle_toggle_headset"
2019-06-02 15:40:33 +05:30
app:enableCopying="true"
2019-06-05 13:47:45 +05:30
app:icon="@drawable/ic_play_arrow_white_32dp" />
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="toggle_shuffle"
android:summary="@string/pref_summary_toggle_shuffle"
android:title="@string/pref_title_toggle_toggle_shuffle"
2019-06-02 15:40:33 +05:30
app:enableCopying="true"
app:icon="@drawable/ic_shuffle_white_24dp" />
2018-11-05 19:23:07 +05:30
2018-08-30 14:59:30 +05:30
</androidx.preference.PreferenceScreen>