0

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!

Community
  • 1
  • 1
Exception
  • 2,273
  • 1
  • 24
  • 42

1 Answers1

3

For Hide/Show Info Button,

videoWidgetView.setInfoButtonEnabled(true);

For Hide/Show CardBoard Button,

videoWidgetView.setStereoModeButtonEnabled(true);

For Hide/Show FullScreenButton,

videoWidgetView.setFullscreenButtonEnabled(true);

Awsom3D
  • 920
  • 7
  • 22