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.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="audio_ducking"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:layout="@layout/list_item_view_switch"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:summary="@string/pref_summary_audio_ducking"
|
2019-06-02 10:10:33 +00:00
|
|
|
android:title="@string/pref_title_audio_ducking"
|
|
|
|
app:icon="@drawable/ic_volume_down_white_24dp" />
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="gapless_playback"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:layout="@layout/list_item_view_switch"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:summary="@string/pref_summary_gapless_playback"
|
2020-01-06 05:34:09 +00:00
|
|
|
android:title="@string/pref_title_gapless_playback" />
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2019-07-30 19:07:48 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreference
|
2018-07-27 13:07:33 +00:00
|
|
|
android:key="equalizer"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:layout="@layout/list_item_view_no_title"
|
2019-06-02 10:10:33 +00:00
|
|
|
android:title="@string/equalizer"
|
2019-11-04 18:43:54 +00:00
|
|
|
app:icon="@drawable/ic_equalizer_white_24dp" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-11-05 13:53:07 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="toggle_headset"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:layout="@layout/list_item_view_switch"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:summary="@string/pref_summary_toggle_headset"
|
|
|
|
android:title="@string/pref_title_toggle_toggle_headset"
|
2019-06-05 08:17:45 +00:00
|
|
|
app:icon="@drawable/ic_play_arrow_white_32dp" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="toggle_shuffle"
|
2019-11-04 18:43:54 +00:00
|
|
|
android:layout="@layout/list_item_view_switch"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:summary="@string/pref_summary_toggle_shuffle"
|
|
|
|
android:title="@string/pref_title_toggle_toggle_shuffle"
|
2019-06-02 10:10:33 +00:00
|
|
|
app:icon="@drawable/ic_shuffle_white_24dp" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
</androidx.preference.PreferenceScreen>
|