Reputation: 221
I have one VideoView in my Android application.I want to remove the Video view's Seekbar or Progressbar in android.How to do it? Thanks for any help?
Upvotes: 0
Views: 1024
Reputation: 1006614
VideoView
does not have a "Seekbar or Progressbar".
If you attached a MediaController
to the VideoView
, that is what has a "Seekbar or Progressbar". If you do not want a MediaController
, remove your code that added one to the VideoView
.
Upvotes: 2