如果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,并烧录固件,重启机器。
原文地址:http://blog.csdn.net/wlwl0071986/article/details/46351009