1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.fwupgrade.saymanss.deviceplug;
|
| /**
| * Created by Administrator on 2019/4/6.
| */
|
| public interface IUsbDevicePlugDelegate {
|
| /**
| * 检测usb设备插入
| */
| void usbDeviceInsert();
|
| /**
| * 权限申请
| */
| void permissionFinish(boolean isSuccessful, CUSBListener.UsbControlBlock ctrlBlock, CameraControlTransfer cct);
|
| /**
| * 检测usb设备拔出
| */
| void usbDeviceDetached();
| }
|
|