0

This is a Screenshot of my VideoView.

enter image description here

What is this bar(green arrow points to it) and how do I get rid of it(set it/null/hide it/invisible)?

codeMagic
  • 44,549
  • 13
  • 77
  • 93

1 Answers1

0

Is it possible that that is the seek bar? Shown in this question are more screenshots

If that is actually the seek bar you can not show it by following the steps here.

Basically just don't set the MediaController:

videoView.setMediaController(null)
Community
  • 1
  • 1
John Boker
  • 82,559
  • 17
  • 97
  • 130
  • I think that is the right answer, I tried to alternate `bringToFront();` between videoview and button and it is the relative Layout covering the seek bar, now just need to find out how to hide it. – user3014444 Nov 21 '13 at 21:37
  • Okay, found out what it was, the videoview was not aligned with the screensize and the relative layout was covering the seerk bar. Thank you, you got me on the right track. – user3014444 Nov 22 '13 at 16:30