Make use of isPlaying feature of ExoPlayer 2.10.5

pull/2697/head
Robin 2019-10-07 10:16:36 +02:00 zatwierdzone przez TobiGr
rodzic bf353875b0
commit 50b51f931e
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -1194,10 +1194,7 @@ public abstract class BasePlayer implements
}
public boolean isPlaying() {
if (simpleExoPlayer == null) return false;
final int state = simpleExoPlayer.getPlaybackState();
return (state == Player.STATE_READY || state == Player.STATE_BUFFERING)
&& simpleExoPlayer.getPlayWhenReady();
return simpleExoPlayer != null && simpleExoPlayer.isPlaying();
}
@Player.RepeatMode