Reputation: 2323
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.
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!
Upvotes: 0
Views: 663
Reputation: 69
For Hide/Show Info Button,
videoWidgetView.setInfoButtonEnabled(true);
For Hide/Show CardBoard Button,
videoWidgetView.setStereoModeButtonEnabled(true);
For Hide/Show FullScreenButton,
videoWidgetView.setFullscreenButtonEnabled(true);
Upvotes: 3