0

I am working on a simple demo app, in which I play a video using VideoView.

What is my Query:

  • When I touch on the VideoView. It'll Show me status of the Video.

Like: pause / next / previous / seek bar / etc, which mention in the Image as u notice. enter image description here

These all things come with in a translucent background and I want this in transparent background. Even I tried but i couldn't get anything related to this.!

Is there any method or way in VideoView for handle this or not ? please let me know

thanks

Akarsh M
  • 1,629
  • 2
  • 24
  • 47

1 Answers1

0

You need to create your own MediaController class and then do:

videoView.setMediaController(yourMediaController);

See this other post: how to create custom UI for android MediaController

Community
  • 1
  • 1
Sam Dozor
  • 40,335
  • 6
  • 42
  • 42