How to pause ExoPlayer 2 playback and resume (PlayerControl was removed)

后端 未结 3 600
自闭症患者
自闭症患者 2020-12-25 11:33

In ExoPlayer < 2.x there was a class PlayerControl with pause() and resume() functions but it was removed. I can\'t fi

3条回答
  •  眼角桃花
    2020-12-25 12:27

    You can use void setPlayWhenReady(boolean playWhenReady).
    If Exo is ready, passing false will pause the player. Passing true will resume it. You can check the player's state using getPlaybackState().

提交回复
热议问题