大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
最近工作上遇到几个USB模块在android平台上适配使用的情况,所以要用到USB权限获取问题
10年的淅川网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都营销网站建设的优势是能够根据用户设备显示端的尺寸不同,自动调整淅川建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。创新互联公司从事“淅川网站设计”,“淅川网站推广”以来,每个客户项目都认真落实执行。
##USB权限获取有以下2种方式:
需要注意的是:
其中 device_filter.xml 中列出了可用 usb 设备,当usb 设备连接手机之后,app 会自动询问是否允许获取该 usb 的权限。
device_filter.xml 放置位置如下图所示 :
device_filter.xml中的内容为:
<?xml version="1.0" encoding="utf-8"?>
usb设备通过 vendor-id(厂商 id) 和 product-id (产品 id)一起来定义的,这里有一个 linux 的 usb设备厂商 id 和产品 id 的汇总,可以作为 Android usb 设备的参考。
//获取USB设备ACTION private static final String ACTION_USB_PERMISSION = "com.android.usb.USB_PERMISSION"; // 获取USB设备列表及定位到要申请权限的USB设备 // mUsbManager = (UsbManager) mContext.getSystemService(Context.USB_SERVICE); // HashMapdevices = mUsbManager.getDeviceList(); // List deviceList = new ArrayList (); // for (UsbDevice device : devices.values()) { // if (3540==device.getVendorId() && 567==device.getProductId()) {//获取打印机设备 vid和pid // currentDevice=device; // } // } //开始申请USB权限 private void getUsbPermission(UsbDevice mUSBDevice) { UltraLog.d("开始申请USB权限"); PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ACTION_USB_PERMISSION), 0); IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION); filter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED); filter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED); mContext.registerReceiver(mUsbReceiver, filter); mUsbManager.requestPermission(mUSBDevice, pendingIntent); // 该代码执行后,系统弹出一个对话框/等待权限 //以下代码是因为在系统层将弹出框直接修改掉了,可以不用 // long start = System.currentTimeMillis(); // while (!mUsbManager.hasPermission(mUSBDevice)) { // long current = System.currentTimeMillis(); // if ((current - start) > 3500) { // break; // } // try { // Thread.sleep(50); // } catch (InterruptedException e) { // e.printStackTrace(); // } // } // }
private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() { @SuppressLint("NewApi") public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (ACTION_USB_PERMISSION.equals(action)) { synchronized (this) { mContext.unregisterReceiver(mUsbReceiver); UsbDevice device = (UsbDevice) intent.getParcelableExtra(UsbManager.EXTRA_DEVICE); if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false) && currentDevice.equals(device)) { //TODO 授权成功,操作USB设备 }else{ //用户点击拒绝了 } } } } };
总结
以上所述是小编给大家介绍的Android 获取 usb 权限的两种方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对创新互联网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!