An option to turn sticky shuffle on or off. It's enabled by default so it keeps the current functionality the same. I noticed every other player has it so hopefully you don't have any issues with it being in the app.
30 lines
No EOL
1.4 KiB
XML
30 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory android:title="@string/pref_header_audio">
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="audio_ducking"
|
|
android:summary="@string/pref_summary_audio_ducking"
|
|
android:title="@string/pref_title_audio_ducking" />
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="gapless_playback"
|
|
android:summary="@string/pref_summary_gapless_playback"
|
|
android:title="@string/pref_title_gapless_playback" />
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="remember_shuffle"
|
|
android:summary="@string/pref_summary_remember_shuffle"
|
|
android:title="@string/pref_title_remember_shuffle" />
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreference
|
|
android:key="equalizer"
|
|
android:title="@string/equalizer" />
|
|
|
|
</com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
|
|
|
|
</android.support.v7.preference.PreferenceScreen> |