diff options
author | saqura <saqura@saqura.xyz> | 2016-04-03 00:32:55 +0200 |
---|---|---|
committer | saqura <saqura@saqura.xyz> | 2016-04-03 00:37:49 +0200 |
commit | 4d47ba640550714968fbb4e5c07ab913474db6c0 (patch) | |
tree | decea30e7c1129ad641149a85fac375942dd2567 /app/src/main/res/xml | |
parent | 65bb7d9911acfc03cb2ef786c857ebcc5fb45677 (diff) | |
download | AntennaPod-4d47ba640550714968fbb4e5c07ab913474db6c0.zip |
Add dialog to choose lock screen playback buttons
This adds a dialog to choose the playback buttons on the lock screen
notification. It only allows selecting a maximum of two values, because
the lock screen notification can only display up to 3 buttons and the
play/pause button is always included. It defaults to additionally show
the skip button.
The minimum sdk has been changed back to 10.
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/preferences.xml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index e40de7c46..b3707f023 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -55,14 +55,10 @@ android:key="prefPersistNotify" android:summary="@string/pref_persistNotify_sum" android:title="@string/pref_persistNotify_title"/> - <com.afollestad.materialdialogs.prefs.MaterialMultiSelectListPreference - android:entries="@array/prioritised_notification_buttons_options" - android:entryValues="@array/prioritised_notification_buttons_values" - android:defaultValue="@array/prioritised_notification_buttons_default_values" - android:title="@string/pref_prioritised_notification_buttons_title" - android:key="prefPrioritisedNotificationButtons" - android:summary="@string/pref_prioritised_notification_buttons_sum" - app:useStockLayout="true"/> + <Preference + android:key="prefNotificationButtons" + android:summary="@string/pref_notification_buttons_sum" + android:title="@string/pref_notification_buttons_title"/> <de.danoeh.antennapod.preferences.SwitchCompatPreference android:defaultValue="true" android:enabled="true" |