I am using VideoView for playing videos.And i want to disable any touch events while video is being played. Only buttons of the phone should work.
I have already tried following different ways.here vv is my VideoView.
vv.setClickable(false);
vv.onTouchEvent(null);
vv.setEnabled(false);
Any kind of help is appreciated!