我想获取所有连接到我的 android usb 设备的主机列表。
UsbManager manager = (UsbManager)parent.getSystemService(Context.USB_SERVICE);
UsbAccessory[] accessoryList = manager.getAccessoryList();
if(accessoryList == null){
Log.w(TAG, "AccessoryList is null");
}
这将 null 返回给 LogCat。
同样在广播接收器中,
UsbAccessory accessory = (UsbAccessory) intent.getParcelableExtra(UsbManager.EXTRA_ACCESSORY);
也返回null。
我的 PC 已连接到 android 并在运行应用程序时,应用程序要求连接到 USB 主机的权限。
怎么了?请帮帮我。