Android应用程序无法读写USB设备的解决方法
假设android系统中的API或者apk无法读写usb设备。可能是没有加入读写usb的权限,须要依照例如以下方法进行设置:
1. 在android.hardware.usb.host.xml文件里加入例如以下内容
<permissions>
<featurename="android.hardware.usb.host"/>
</permissions>
2. 在tablet_core_hardware.xml文件里加入例如以下内容
<featurename="android.hardware.usb.host">
3. 又一次编译system.img。并烧录固件,重新启动机器。