2

适用于 Gear VR 的 Android 应用程序,使用三星 S6 和 S7。以下实施用于在移动插入 VR 时自动启动。
AndroidManifest.xml

<activity
         android:name=".SplashActivity"
         android:theme="@style/SplashTheme"
         android:launchMode="singleTask"
         android:excludeFromRecents="true"
         android:configChanges="orientation|keyboardHidden|screenSize"
         android:clearTaskOnLaunch="true"
         android:screenOrientation="landscape"
         android:stateNotNeeded="true">

    <intent-filter>                    
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.LAUNCHER" />
    <category android:name="android.intent.category.INFO" />

    </intent-filter>
    <intent-filter> <action android:name="android.intent.action.proximity_sensor"          /> </intent-filter>
    <intent-filter> <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> </intent-filter>
    <intent-filter> <action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" /> </intent-filter>
    <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
                        android:resource="@xml/device_filter" />
    </activity>

device_filter.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <usb-device vendor-id="04e8" product-id="07d2" /> 
</resources> 

它可以工作,但Oculus应用程序存在问题,有时我的应用程序在 Oculus 应用程序之前启动,有时 Oculus 应用程序出现但我的应用程序没有启动。

有时,当我们的应用程序在安装到 VR 之前打开时,Oculus应用程序崩溃说“不幸的是,Oculus Home 已停止。” 由于冲突和系统显示对话框。

4

1 回答 1

0

这些文档很有帮助:) https://developer.android.com/guide/topics/connectivity/usb/host.html

例如,这是我们如何获取有关附加设备的详细信息。

UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
于 2016-12-21T13:10:24.807 回答