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