Exoplayer PlayerNotificationManager onSwipe - PullRequest
       2

Exoplayer PlayerNotificationManager onSwipe

0 голосов
/ 03 февраля 2020

Я использую Exoplayer версии 2.11.0, и мне интересно, есть ли возможность остановки PlayerNotificationManager, когда пользователь проводит пальцем вправо (аналогично Spotify). По умолчанию я могу вызвать только useStopAction (true) https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/ui/PlayerNotificationManager.html, что меня не устраивает.

enter image description here

1 Ответ

0 голосов
/ 15 апреля 2020
   @Override
                public void onNotificationPosted(int notificationId, Notification notification, boolean ongoing) {
                    if (ongoing) {
                        // Make sure the service will not get destroyed while playing media.
                        startForeground(notificationId, notification);
                    } else {
                        // Make notification cancellable.
                        stopForeground(false);
                    }
                }
...