我正在使用Galaxy SII(Android版本4.1.2),我正在尝试构建一个可以告诉我是否连接Usb设备的应用程序。
我还有一个OTG适配器(效果很好..)当我连接键盘/鼠标时,我的太阳能识别它们,我可以顺利使用它们。
在我的代码中,我尝试迭代连接的设备,但它就像没有任何连接。这是我的代码:
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
// Get the list of attached devices
HashMap<String, UsbDevice> devices = manager.getDeviceList();
Toast.makeText(this, "Number of devices: " + devices.size(), Toast.LENGTH_LONG).show();
// Iterate over all devices
Iterator<String> it = devices.keySet().iterator();
while (it.hasNext())
{
String deviceName = it.next();
UsbDevice device = devices.get(deviceName);
String VID = Integer.toHexString(device.getVendorId()).toUpperCase();
String PID = Integer.toHexString(device.getProductId()).toUpperCase();
Toast.makeText(this, deviceName + " " + VID + ":" + PID + " " + manager.hasPermission(device), Toast.LENGTH_LONG).show();
}
这是清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ipad"
android:versionCode="1"
android:versionName="1.0" >
<uses-feature android:name="android.hardware.usb.host"/>
<uses-sdk android:minSdkVersion="12" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="com.example.ipad.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
感谢你的帮助:)
答案 0 :(得分:1)
显然Galaxy S2不支持Usb 1.x连接。
在此处找到:http://www.xda-developers.com/android/samsung-galaxy-s-i9000-gains-usb-host-functionality/