我目前正在尝试运行具有白日梦兼容性的应用。一切正常,除非我试图切换到纸板模式,我收到以下错误消息"此Cardboard应用程序与Daydream耳机不兼容"
根据我在网上找到的一些帖子,它可能是一个明显的问题(https://github.com/Samsung/GearVRf/issues/1618和https://github.com/googlevr/gvr-android-sdk/issues/295),但我的应用正确地声明了DAYDREAM意图过滤器,这是我的清单(我的问题)在PlayerActivity中发生)
<?xml version="1.0" encoding="utf-8"?>
<!-- Required GLES 2 -->
<uses-feature android:glEsVersion="0x00020002" android:required="true" />
<!-- Required by the app to stream video. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- Make accelerometer and gyroscope hard requirements for good head tracking. -->
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true"/>
<uses-feature android:name="android.hardware.sensor.gyroscope" android:required="true"/>
<!-- Indicates use of Android's VR-mode, available only on Android N+. -->
<uses-feature android:name="android.software.vr.mode" android:required="true"/>
<!-- Indicates use of VR features that are available only on Daydream-ready devices. -->
<uses-feature android:name="android.hardware.vr.high_performance" android:required="true"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_sphereplay"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:largeHeap="true">
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/SpherePlayMaterialTheme"
android:label="@string/app_name" >
<!-- Cardboard -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".PlayerActivity"
android:screenOrientation="landscape"
android:theme="@style/SpherePlayMaterialTheme"
android:resizeableActivity="false"
android:configChanges="density|keyboardHidden|navigation|orientation|screenSize|uiMode"
android:launchMode="singleTask">
<intent-filter>
<category android:name="com.google.intent.category.CARDBOARD" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="spmedia"/>
</intent-filter>
</activity>
<activity
android:name=".DaydreamActivity"
android:screenOrientation="landscape"
android:theme="@style/SpherePlayMaterialTheme"
android:resizeableActivity="false"
android:configChanges="density|keyboardHidden|navigation|orientation|screenSize|uiMode"
android:enableVrMode="@string/gvr_vr_mode_component"
android:launchMode="singleTask">
<!-- The VR icon to be used in Daydream Home comes in two parts:
a foreground icon and a background icon. -->
<meta-data
android:name="com.google.android.vr.icon"
android:resource="@drawable/vr_icon_fg" />
<meta-data
android:name="com.google.android.vr.icon_background"
android:resource="@drawable/vr_icon_bg" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.google.intent.category.DAYDREAM" />
</intent-filter>
</activity>
</application>
知道该怎么做以便能够使用纸板模式吗?
答案 0 :(得分:0)
我不是程序员,但我想我可能知道一种解决方法。顺便说一下,我有一个来自MetroPCS Awesome手机的中兴刀片最大型号z982。我所做的第一件事是在其上安装CardBoard,但对它不想使用我的蓝牙游戏手柄感到失望。因此,我尝试获取DayDream应用程序,但Google不允许我将其下载到我的廉价手机上,因此我不知道它是否可以使用我的蓝牙游戏手柄。但是我确实看到我可以下载Google VR Services应用程序,希望那可以让我在纸板中使用蓝牙游戏手柄,但是没有运气。但是我确实发现我可以设置Google纸板以在设置中使用以太本身或Google VR服务。
对于您的问题,我认为您需要先进行纸板研究,然后再进行演示游戏。当屏幕出现时,点击屏幕中间底部的*按钮,将您带到设置屏幕,您应该会看到一个弹出窗口,询问您要使用哪种服务。选择纸板一次。我相信这种解决方法将为您服务。