1

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.

Jiju Induchoodan
  • 4,236
  • 1
  • 22
  • 24

1 Answers1

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.

Community
  • 1
  • 1
KENdi
  • 7,576
  • 2
  • 16
  • 31