Pause/Stop MediaPlayer Android at given time programmatically

后端 未结 5 1940
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-09 12:23

I researched a little bit, but couldn\'t find any solutions to this problem: I would like to play a MediaPlayer and pause/stop it at a given time.. (ie: play from s

5条回答
  •  爱一瞬间的悲伤
    2021-02-09 12:41

    You can use CountDownTimer

    new CountDownTimer(30000, 1000) {
    
         public void onTick(long millisUntilFinished) {
    
         }
    
         public void onFinish() {
             mp.stop;
             mp.relese();
         }
      }.start();
    

提交回复
热议问题