5

我有 USB 主机 android 设备,我需要连接 USB 设备。为了检测到主机的 USB 设备,我编写了以下代码。

public class ReadData extends Activity {

    UsbManager usbManager;
    PendingIntent mPermissionIntent;
    UsbDevice usbDevice;
    Intent intent;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_read_data);

        usbManager = (UsbManager) getSystemService(Context.USB_SERVICE);


        final String ACTION_USB_PERMISSION =
                "com.example.udevice.USB_PERMISSION";        

        IntentFilter filter = new                    IntentFilter("android.hardware.usb.action.USB_ACCESSORY_ATTACHED");
        registerReceiver(mUsbReceiver, filter);
    }


    private static final String ACTION_USB_PERMISSION =
            "com.example.udevice.USB_PERMISSION";
        private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {

            public void onReceive(Context context, Intent intent) {



                String action = intent.getAction();
                if (ACTION_USB_PERMISSION.equals(action)) {
                    synchronized (this) {

                         usbDevice = (UsbDevice) intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
                         usbManager.requestPermission(usbDevice, mPermissionIntent);

                        if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
                            if(usbDevice != null){
                              //call method to set up device communication


                               int deviceId = usbDevice.getDeviceId();
                               int productId = usbDevice.getProductId();              


                               Log.i("device id", "****"+deviceId);
                               Log.i("product id", "****"+productId);

                           }else{
                               Log.i("device id", "No USB device");
                           }

                        } 
                        else {
                            Log.d("shiv", "permission denied for device ");
                        }
                    }
                }
            }
        };

清单如下:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.udevice"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-feature android:name="android.hardware.usb.host" />
    <uses-sdk
        android:minSdkVersion="12"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".ReadData"
            android:label="@string/title_activity_heat_con" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <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>

</manifest>

device_filter.xml

 <resources>
        <usb-device vendor-id="67b" 
            product-id="2303"/>
    </resources>

在上面的 xml 文件中,我添加了设备属性。每当 USB 设备连接到主机设备时,我都期待广播意图。但它没有发生。上面的代码有什么问题。

谢谢希夫

4

2 回答 2

7

我认为您需要添加:

<intent-filter>
    <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>

描述here

于 2012-10-11T15:15:23.603 回答
4

你做错了一件事。

供应商 ID 和设备 ID 应该是十进制而不是十六进制。例如,您需要定义如下

 <resources>
        <usb-device vendor-id="1659" 
            product-id="8963"/>
    </resources>

我将您的设备 ID 和供应商 ID 从十六进制转换为十进制 让我知道这是否有帮助

于 2012-10-11T15:15:20.823 回答