SeekBar and media player in android

前端 未结 12 2045
天涯浪人
天涯浪人 2020-11-28 03:13

I have a simple player and recorder. Everything works great but have a one problem. I want to add seek bar to see progress in playing record and use this seek bar to set pl

12条回答
  •  忘掉有多难
    2020-11-28 04:01

    Based on previous statements, for better performance, you can also add an if condition

    if (player.isPlaying() {
        handler.postDelayed(..., 1000);
    }
    

提交回复
热议问题