我要做的是从onCardboardTrigger
中捕获VrPanoramaView
事件。所以我想我可以在setGvrView
上GvrActivity
。但我无法在VrPanoramaView
上看到我如何做到这一点。有什么想法吗?
activity = new GvrActivity();
activity.setGvrView(panoWidgetView);
Error:(65, 29) error: incompatible types: VrPanoramaView cannot be converted to GvrView
答案 0 :(得分:2)
没有。作为quickselect,VrPanoramaView扩展了VrWidgetView。因此,您无法将VrPanoramaView设置为GvrView。
遵循Android Studio中此组件的继承层次结构,您可以看到VrPanoramaView和GvrView都直接从FrameLayout继承。因此,VrPanoramaView无法扩展GvrView。