Add seekbar to Android 10 notifications
Adds a seekbar which is scrubbable for the media player notification in Android 10
This commit is contained in:
parent
2c58cb7da0
commit
14b93bb8bf
|
@ -1158,7 +1158,8 @@ public class PlaybackService extends MediaBrowserServiceCompat {
|
|||
long capabilities = PlaybackStateCompat.ACTION_PLAY_PAUSE
|
||||
| PlaybackStateCompat.ACTION_REWIND
|
||||
| PlaybackStateCompat.ACTION_FAST_FORWARD
|
||||
| PlaybackStateCompat.ACTION_SKIP_TO_NEXT;
|
||||
| PlaybackStateCompat.ACTION_SKIP_TO_NEXT
|
||||
| PlaybackStateCompat.ACTION_SEEK_TO;
|
||||
|
||||
if (useSkipToPreviousForRewindInLockscreen()) {
|
||||
// Workaround to fool Android so that Lockscreen will expose a skip-to-previous button,
|
||||
|
|
Loading…
Reference in New Issue