I have a SeekBar, it displays correctly MediaPlayer progress. However, I have troubles with seeking - if I seek scroll box somewhere it just return
SeekBar
MediaPlayer
You have to include the seekbar methods inside the onCreate. I had the same problem, and it worked after that.
onCreate
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { if(fromUser){ mediaPlayer.seekTo(progress); seekBar.setProgress(progress); }