문제

How can I use UsbManager class in Android API level 1? I'll try the code below but I can not reach UsbManager.

IntentFilter deviceAttachedFilter = new IntentFilter();
deviceAttachedFilter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
deviceAttachedFilter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED);
registerReceiver(mUsbReceiver, deviceAttachedFilter);
도움이 되었습니까?

해결책

As stated in the official Documentation, UsbManager was introduced with API level 12.

There is no way to use it on previous platform versions. It runs as a system service, and those cannot be easily backported.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top