I have a video player in my android app. By default, the MediaController
becomes visible upon playing for 3 seconds, if no activity.
The app goes through a series of short clips and that is fine, however, the MediaController pops up every time the video changes.
Is it possible to have it only show on demand (tapping the video view)?
I tried calling controller.hide()
and controller.show(0)
after I call vidPlayer.start()
, but neither have worked. Any ideas?