Exception
Exception

Reputation: 2323

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

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!

Upvotes: 0

Views: 663

Answers (1)

Kailash Chavda
Kailash Chavda

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

Related Questions