How to hide the controls in the VideoView in Android? How to hide the controls in the VideoView in Android? android android

How to hide the controls in the VideoView in Android?


To the Controls in the VideoView, we can set MediaController to null.

videoView.setMediaController(null)


Try this:

MediaController ctrl = new MediaController(context);ctrl.setVisibility(View.GONE);videoView.setMediaController(ctrl);