Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Hide Video view's Seekbar or Progressbar in android

Tags:

android

i am doing live streaming and play video in video view. i want to hide default progress bar of video view . so i kindly request for my problem if anybody have good solution for my problem please send me. Thanx in advance.......

like image 672
Hasmukh Avatar asked Oct 01 '11 07:10

Hasmukh


People also ask

How do I hide SeekBar?

Click the Edit button under the slide you would like to hide the seek bar on.

What is difference between ProgressBar and SeekBar?

What is difference between ProgressBar and SeekBar? An example of SeekBar is your device's brightness control and volume control. Important Note: Attribute of a SeekBar are same as ProgressBar and the only difference is user determine the progress by moving a slider (thumb) in SeekBar.

What is SeekBar?

Android SeekBar is a type of ProgressBar. On touching the thumb on seekbar and dragging it to the right or left, the current value of the progress changes. SeekBar is used for forwarding or backwarding the songs, Video etc. In the setOnSeekBarChangeListener interface is used which provides three methods.


1 Answers

You have to set the media controller as null like this:

videoView.setMediaController(null);

like image 79
Drin Avatar answered Oct 01 '22 20:10

Drin