我尝试创建一个可以检测USB设备的应用。 Android设备就像一个主机,我现在只需要读取附加设备的数据。
我导入 android.hardware.usb.UsbDevice
一切正常,但问题在于任何usbDevice方法。我可以读取usbDevice.getDeviceName()方法,但我不能使用例如getVersion(),为什么?
他说我用炮来解决这个问题。还有其他方法。
private String readDevice(UsbDevice device) {
StringBuilder sb = new StringBuilder();
String a = device.getDeviceName(); //work
String b = device.getVersion(); //doesn't work
}