VrPanoramaView 是 GvrView 的子类吗?

Is VrPanoramaView a subclass of GvrView?

我想做的是从 VrPanoramaView 捕获 onCardboardTrigger 事件。所以我想我可以在 GvrActivity 上做 setGvrView。但我看不出如何在 VrPanoramaView 上做到这一点。有什么想法吗?

activity = new GvrActivity();
activity.setGvrView(panoWidgetView);


Error:(65, 29) error: incompatible types: VrPanoramaView cannot be converted to GvrView

没有。由于 shown in the API documentation,VrPanoramaView 扩展了 VrWidgetView。因此,您不能将 VrPanoramaView 设置为 GvrView。

按照AndroidStudio中该组件的继承层次,可以看到VrPanoramaView和GvrView都直接继承自FrameLayout。因此,VrPanoramaView 无法扩展 GvrView。