最近,公司有个项目让我去调会议大屏的触摸问题。由于他的那个会议机是有几个信源的,还内置了一个小型的PC。所以它是有两路触摸的,现在问题的现象是,android下的触摸下的触摸只有down时间而并没有up事件。现在的处理方法就是关闭一路触摸。
我们需要先获取到usbservice
// 获取UsbManager
myUsbManager = (UsbManager) getSystemService(USB_SERVICE);
接下来需要枚举所有的usb设备,找到想要通信的那个devices
/**
* 枚举设备
*/
private void enumerateDevice() {
if (myUsbManager == null)
return;
HashMap<String, UsbDevice> deviceList = myUsbManager.getDeviceList();
if (!deviceList.isEmpty()) { // deviceList不为空
StringBuffer sb = new StringBuffer();
for (UsbDevice device : deviceList.values()) {
// 输出设备信息
Log.d(TAG, "DeviceInfo: " + device.getVendorId() + " , "
+ device.getProductId());
// 枚举到设备,VendorID和ProductID就是你自己的设备
if (device.getVendorId() == VendorID
&& device.getProductId() == ProductID) {
myUsbDevice = device;
Log.d(TAG, "枚举设备成功");
}
}
}
}
接下来我们需要找到usb设备的接口
/**
* 找设备接口
*/
private void findInterface() {
if (myUsbDevice != null) {
Log.d(TAG, "interfaceCounts : " + myUsbDevice.getInterfaceCount());
for (int i = 0; i < myUsbDevice.getInterfaceCount(); i++) {
UsbInterface intf = myUsbDevice.getInterface(i);
// 这些设备的信息,你如果不知道在枚举设备的时候,可以把对应的信息打印出来
if (intf.getInterfaceClass() == 3
&& intf.getInterfaceSubclass() == 0
&& intf.getInterfaceProtocol() == 0) {
myInterface = intf;
Log.d(TAG, "myinterfaceCount is found");
}
break;
}
}
}
下一步就需要去打开我们的usb设备了
/**
* 打开设备
*/
private void openDevice() {
if (myInterface != null) {
UsbDeviceConnection conn = null;
// 在open前判断是否有连接权限;对于连接权限可以静态分配,也可以动态分配权限,可以查阅相关资料
if (myUsbManager.hasPermission(myUsbDevice)) {
conn = myUsbManager.openDevice(myUsbDevice);
}
if (conn == null) {
return;
}
if (conn.claimInterface(myInterface, true)) {
myDeviceConnection = conn; // 到此你的android设备已经连上HID设备
Log.d(TAG, "open device success");
} else {
conn.close();
}
}
}
下一步就是分配端点了
/**
* 分配端点,IN | OUT,即输入输出;自己判断一下就可
*/
if (myInterface != null) {
//如果这里的端点只有一个,检测一下是不是选错设备了,如果设备没有
错误的话,大概率是设备或者固件的问题了
Log.i(TAG, "[isUsbPermission] has " + endpointCount + " endpoints for interface");
for (int i = 0; i < inUsbInterface.getEndpointCount(); i++) {
tempEndpoint = inUsbInterface.getEndpoint(i);
if(tempEndpoint != null){
if(tempEndpoint.getDirection() == UsbConstants.USB_DIR_IN){
Log.i(TAG, "[isUsbPermission] Endpoint"+i+"is USB_DIR_IN");
inEndpoint = tempEndpoint;
}else{
Log.i(TAG, "[isUsbPermission] Endpoint 0 is USB_DIR_OUT");
outEndpoint = tempEndpoint;
}
}
}
}
|