Show skip button even if 'continuous playback' is disabled
It can still be used to skip the rest of an episode and load the next one into the notification/miniplayer. There is no reason to hide the button and instead show no button at all.
This commit is contained in:
parent
4513711981
commit
32ffb2d1e9
@ -212,17 +212,14 @@ public class PlaybackServiceNotificationBuilder {
|
|||||||
}
|
}
|
||||||
numActions++;
|
numActions++;
|
||||||
|
|
||||||
if (UserPreferences.isFollowQueue()) {
|
PendingIntent skipButtonPendingIntent = getPendingIntentForMediaAction(
|
||||||
PendingIntent skipButtonPendingIntent = getPendingIntentForMediaAction(
|
KeyEvent.KEYCODE_MEDIA_NEXT, numActions);
|
||||||
KeyEvent.KEYCODE_MEDIA_NEXT, numActions);
|
notification.addAction(R.drawable.ic_notification_skip, context.getString(R.string.skip_episode_label),
|
||||||
notification.addAction(R.drawable.ic_notification_skip,
|
skipButtonPendingIntent);
|
||||||
context.getString(R.string.skip_episode_label),
|
if (UserPreferences.showSkipOnCompactNotification()) {
|
||||||
skipButtonPendingIntent);
|
compactActionList.add(numActions);
|
||||||
if (UserPreferences.showSkipOnCompactNotification()) {
|
|
||||||
compactActionList.add(numActions);
|
|
||||||
}
|
|
||||||
numActions++;
|
|
||||||
}
|
}
|
||||||
|
numActions++;
|
||||||
|
|
||||||
PendingIntent stopButtonPendingIntent = getPendingIntentForMediaAction(
|
PendingIntent stopButtonPendingIntent = getPendingIntentForMediaAction(
|
||||||
KeyEvent.KEYCODE_MEDIA_STOP, numActions);
|
KeyEvent.KEYCODE_MEDIA_STOP, numActions);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user