Android SeekBar to control MediaPlayer progress

前端 未结 6 2028
情话喂你
情话喂你 2020-12-24 14:43

I have a SeekBar, it displays correctly MediaPlayer progress. However, I have troubles with seeking - if I seek scroll box somewhere it just return

6条回答
  •  感动是毒
    2020-12-24 15:03

    You have to include the seekbar methods inside the onCreate. I had the same problem, and it worked after that.

    public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 
    if(fromUser){ 
        mediaPlayer.seekTo(progress); 
        seekBar.setProgress(progress);
    }
    

提交回复
热议问题