Is there a way to disable the seekbar in expanded controller view in android Chromecast SDK V3? Facing an issue with the progress bar seek for LIVE videos. The playback is getting hanged while seeking. This issue is also seen in cast-videosAndroid sample app.
Asked
Active
Viewed 712 times
1 Answers
0
Well, like the answer of Ali Naddaf here, if it is your own application, then don't add the progress bar in the first place.
Other developers hide the video view's Seekbar or Progressbar in android by setting the setMediaController to null.
videoView.setMediaController(null);
For more information, check this SO question and this ProgressBar documentation.
-
I want to disable the progressbar in expandedcontroller view and not in the videoview. Is there any way to achieve that – Jiju Induchoodan Jan 10 '17 at 23:15