[Android]: Remove/Hide back, info and cardboard button from VrVideoView

669 Views Asked by At

I want to use VrVideoView as a splash screen for my app. For that I want to remove back,info and cardboard buttons(in below image) from VrVideoView.

enter image description here

Is this possible? If not, is there any other way I can show a 360 video as my splash screen?

I have already tried this answer, but it did not work.

Thanks in advance!

1

There are 1 best solutions below

0
On

For Hide/Show Info Button,

videoWidgetView.setInfoButtonEnabled(true);

For Hide/Show CardBoard Button,

videoWidgetView.setStereoModeButtonEnabled(true);

For Hide/Show FullScreenButton,

videoWidgetView.setFullscreenButtonEnabled(true);