Search code examples
androidmedia-player

How to connect Media Player to a SeekBar?


I want to show the progress of a media on a seekbar. Also I want to allow user to "jump" within a medium.

I have a MediaPlayer, and a SeekBar. And as far as I see there is no an easy way to merge them.


Solution

  • You can use VideoView instead of MediaPlayer and you can have MediaController which can be set to VideoView.

    Otherwise you have to get the progress at instances and update the seek bar you can use timers.