我想在我的Android应用中显示类似http://alfavr.ir/alfavr.ir/to/park.html的VR游览。 我怎样才能做到这一点? 我尝试使用Web视图显示,因为文件格式为Html,但没有用。
答案 0 :(得分:1)
您可以尝试使用Google VR SDK中包含的VRPanormaView。这是来自https://developers.google.com/vr/develop/android/vrview的示例:
<com.google.vr.sdk.widgets.pano.VrPanoramaView
android:id="@+id/pano_view"
android:layout_margin="5dip"
android:layout_width="match_parent"
android:scrollbars="@null"
android:layout_height="250dip" />
在“活动”中,主要方法是VrPanoramaView.loadImageFromBitmap()
。使用标准的Android位图对象和可选的VrPanoramaView.Options
对象来调用它。后者用于配置图像的格式。该活动还实现了VrPanoramaEventListener
,它在加载操作成功或失败时接收事件。
答案 1 :(得分:0)
添加此行使其生效。
webView.getSettings().setJavaScriptEnabled(true);