gpt4 book ai didi

安卓SDK : how to read a USB device's class?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:08:08 27 4
gpt4 key购买 nike

我已经尝试编写用于扫描 USB 端口和显示所连接设备的基本信息的原始 Activity 。我对阅读设备类特别感兴趣,我相信UsbDevice.getDeviceClass ()方法适用于。这是它的样子:

HashMap<String, UsbDevice> deviceList = findUsbDevices();
Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
if (deviceIterator.hasNext())
{
UsbDevice device = deviceIterator.next();
String name = device.toString();
String cls = Integer.toString(device.getDeviceClass());
displayDeviceInfo(name, cls);
}

但是,它没有按预期工作,为我连接的任何设备提供 0。 UsbDevice 对象的许多其他字段,如子类或协议(protocol),也为 0。那么我如何获得设备类?

最佳答案

USB class是interface的属性,不是device。迭代接口(interface)按预期工作:

int count = device.getInterfaceCount();
for (int i = 0; i < count; i++)
{
UsbInterface iface = device.getInterface(i);
int cls = iface.getInterfaceClass();
}

关于安卓SDK : how to read a USB device's class?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6937834/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com