5

我正在搞乱 USB 主机,并按照Android 开发者网站上的指南,我设法创建了一个 Hello World,一旦插入特定的 USB 设备就会启动。但是,当我尝试“......从意图中获取表示连接设备的 UsbDevice”它返回 null:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Intent intent = new Intent();
    UsbDevice device = (UsbDevice) intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);


    // device is always null
    if (device == null){Log.i(TAG,"Null device");}

这是我的清单:

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
        </activity>
    </application>

还有我的 xml/device_filter.xml(我知道这些是正确的 VID 和 PID,因为我有一个类似的应用程序使用Android 开发者网站上描述的枚举方法工作):

<resources>
    <usb-device vendor-id="1234" product-id="1234"/>
</resources>
4

2 回答 2

7

当您的应用程序由于 USB 设备附加事件而(重新)启动时,设备会在onResume被调用时传递给意图。您可以使用该getParcelableExtra方法获得它。例如:

@Override
protected void onResume() {
    super.onResume();

    Intent intent = getIntent();
    if (intent != null) {
        Log.d("onResume", "intent: " + intent.toString());
        if (intent.getAction().equals(UsbManager.ACTION_USB_DEVICE_ATTACHED)) {
            UsbDevice usbDevice = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
            if (usbDevice != null) {
                Log.d("onResume", "USB device attached: name: " + usbDevice.getDeviceName());
于 2013-10-15T09:37:38.370 回答
1

感谢Taylor Alexander ,我找到了一种解决方法(或预期的用途?) 。基本上,我理解的方式是触发打开应用程序的意图只会打开应用程序之后,您必须根据 onResume 方法中 Android 开发人员页面的枚举设备部分 搜索和访问 USB 设备。

@Override
    public void onResume() {
        super.onResume();

        UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
        HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
        Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();

        while(deviceIterator.hasNext()){
            UsbDevice device = deviceIterator.next();
                // Your code here!
        }

我不相信这是正确的方法,但它似乎有效。如果有人有任何进一步的建议,我很乐意倾听。

于 2013-07-24T09:09:19.813 回答