如何忽略usb host 模式设备连接确认对话框
<li class="alt"><span><span>package android.hardware.usb; </span></span></li><li class=""><span> </span></li><li class="alt"><span>public interface IUsbManager extends android.os.IInterface </span></li><li class=""><span>{ </span></li><li class="alt"><span> /** Local-side IPC implementation stub class. */ </span></li><li class=""><span> public static abstract class Stub extends android.os.Binder implements android.hardware.usb.IUsbManager </span></li><li class="alt"><span> { </span></li><li class=""><span> /** Construct the stub at attach it to the interface. */ </span></li><li class="alt"><span> public Stub() </span></li><li class=""><span> { </span></li><li class="alt"><span> throw new RuntimeException( "Stub!" ); </span></li><li class=""><span> } </span></li><li class="alt"><span> /** </span></li><li class=""><span> * Cast an IBinder object into an android.hardware.usb.IUsbManager interface, </span></li><li class="alt"><span> * generating a proxy if needed. </span></li><li class=""><span> */ </span></li><li class="alt"><span> public static android.hardware.usb.IUsbManager asInterface( android.os.IBinder obj ) </span></li><li class=""><span> { </span></li><li class="alt"><span> throw new RuntimeException( "Stub!" ); </span></li><li class=""><span> } </span></li><li class="alt"><span> </span></li><li class=""><span> public android.os.IBinder asBinder() </span></li><li class="alt"><span> { </span></li><li class=""><span> throw new RuntimeException( "Stub!" ); </span></li><li class="alt"><span> } </span></li><li class=""><span> </span></li><li class="alt"><span> public boolean onTransact( int code, android.os.Parcel data, android.os.Parcel reply, int flags ) throws android.os.RemoteException </span></li><li class=""><span> { </span></li><li class="alt"><span> throw new RuntimeException( "Stub!" ); </span></li><li class=""><span> } </span></li><li class="alt"><span> </span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_getDeviceList</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_openDevice</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_getCurrentAccessory</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_openAccessory</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_setDevicePackage</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_setAccessoryPackage</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_hasDevicePermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_hasAccessoryPermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 7); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_requestDevicePermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 8); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_requestAccessoryPermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 9); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_grantDevicePermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 10); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_grantAccessoryPermission</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 11); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_hasDefaults</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 12); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_clearDefaults</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 13); </span></span></li><li class=""><span> static final int <span class="attribute">TRANSACTION_setCurrentFunction</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 14); </span></span></li><li class="alt"><span> static final int <span class="attribute">TRANSACTION_setMassStorageBackingFile</span><span> = (android.os.IBinder.FIRST_CALL_TRANSACTION + 15); </span></span></li><li class=""><span> } </span></li><li class="alt"><span> </span></li><li class=""><span> /* Returns a list of all currently attached USB devices */ </span></li><li class="alt"><span> public void getDeviceList( android.os.Bundle devices ) throws android.os.RemoteException; </span></li><li class=""><span> /* Returns a file descriptor for communicating with the USB device. </span></li><li class="alt"><span> * The native fd can be passed to usb_device_new() in libusbhost. </span></li><li class=""><span> */ </span></li><li class="alt"><span> public android.os.ParcelFileDescriptor openDevice( java.lang.String deviceName ) throws android.os.RemoteException; </span></li><li class=""><span> /* Returns the currently attached USB accessory */ </span></li><li class="alt"><span> public android.hardware.usb.UsbAccessory getCurrentAccessory() throws android.os.RemoteException; </span></li><li class=""><span> /* Returns a file descriptor for communicating with the USB accessory. </span></li><li class="alt"><span> * This file descriptor can be used with standard Java file operations. </span></li><li class=""><span> */ </span></li><li class="alt"><span> public android.os.ParcelFileDescriptor openAccessory( android.hardware.usb.UsbAccessory accessory ) throws android.os.RemoteException; </span></li><li class=""><span> /* Sets the default package for a USB device </span></li><li class="alt"><span> * (or clears it if the package name is null) </span></li><li class=""><span> */ </span></li><li class="alt"><span> public void setDevicePackage( android.hardware.usb.UsbDevice device, java.lang.String packageName ) throws android.os.RemoteException; </span></li><li class=""><span> /* Sets the default package for a USB accessory </span></li><li class="alt"><span> * (or clears it if the package name is null) </span></li><li class=""><span> */ </span></li><li class="alt"><span> public void setAccessoryPackage( android.hardware.usb.UsbAccessory accessory, java.lang.String packageName ) throws android.os.RemoteException; </span></li><li class=""><span> /* Returns true if the caller has permission to access the device. */ </span></li><li class="alt"><span> public boolean hasDevicePermission(android.hardware.usb.UsbDevice device) throws android.os.RemoteException; </span></li><li class=""><span> /* Returns true if the caller has permission to access the accessory. */ </span></li><li class="alt"><span> public boolean hasAccessoryPermission( android.hardware.usb.UsbAccessory accessory ) throws android.os.RemoteException; </span></li><li class=""><span> /* Requests permission for the given package to access the device. </span></li><li class="alt"><span> * Will display a system dialog to query the user if permission </span></li><li class=""><span> * had not already been given. </span></li><li class="alt"><span> */ </span></li><li class=""><span> public void requestDevicePermission( android.hardware.usb.UsbDevice device, java.lang.String packageName, android.app.PendingIntent pi ) throws android.os.RemoteException; </span></li><li class="alt"><span> /* Requests permission for the given package to access the accessory. </span></li><li class=""><span> * Will display a system dialog to query the user if permission </span></li><li class="alt"><span> * had not already been given. Result is returned via pi. </span></li><li class=""><span> */ </span></li><li class="alt"><span> public void requestAccessoryPermission( android.hardware.usb.UsbAccessory accessory, java.lang.String packageName, android.app.PendingIntent pi ) throws android.os.RemoteException; </span></li><li class=""><span> /* Grants permission for the given UID to access the device */ </span></li><li class="alt"><span> public void grantDevicePermission( android.hardware.usb.UsbDevice device, int uid ) throws android.os.RemoteException; </span></li><li class=""><span> /* Grants permission for the given UID to access the accessory */ </span></li><li class="alt"><span> public void grantAccessoryPermission( android.hardware.usb.UsbAccessory accessory, int uid ) throws android.os.RemoteException; </span></li><li class=""><span> /* Returns true if the USB manager has default preferences or permissions for the package */ </span></li><li class="alt"><span> public boolean hasDefaults( java.lang.String packageName ) throws android.os.RemoteException; </span></li><li class=""><span> /* Clears default preferences and permissions for the package */ </span></li><li class="alt"><span> public void clearDefaults( java.lang.String packageName ) throws android.os.RemoteException; </span></li><li class=""><span> /* Sets the current USB function. */ </span></li><li class="alt"><span> public void setCurrentFunction( java.lang.String function, boolean makeDefault ) throws android.os.RemoteException; </span></li><li class=""><span> /* Sets the file path for USB mass storage backing file. */ </span></li><li class="alt"><span> public void setMassStorageBackingFile( java.lang.String path ) throws android.os.RemoteException; </span></li><li class=""><span>} </span></li>
这篇文章提到三种方法可以实现所需要的效果:
1,把您的app放到系统应用文件夹下:/system/app/...
2,在AndroidManifest.xml中添加上系统签名;
以上两种方法作为第三方应用的开发者来说都有点难度,第三种方法的实现除了安装apk应用之后第一次插上USB设备弹出对话框:
勾选上 “默认情况下用于该USB设备”,点击确定即可。每次开机后默认打开该app应用。
使用本文提到的第三种方法确实可以避免每次打开app应用都弹出对话框的请求;
3,步骤一:在你的项目中加入包 android.hardware.usb,添加接口文件IUsbManager.java:
package android.hardware.usb;
public interface IUsbManager extends android.os.IInterface
{
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements android.hardware.usb.IUsbManager
{
/** Construct the stub at attach it to the interface. */
public Stub()
{
throw new RuntimeException( "Stub!" );
}
/**
* Cast an IBinder object into an android.hardware.usb.IUsbManager interface,
* generating a proxy if needed.
*/
public static android.hardware.usb.IUsbManager asInterface( android.os.IBinder obj )
{
throw new RuntimeException( "Stub!" );
}
public android.os.IBinder asBinder()
{
throw new RuntimeException( "Stub!" );
}
public boolean onTransact( int code, android.os.Parcel data, android.os.Parcel reply, int flags ) throws android.os.RemoteException
{
throw new RuntimeException( "Stub!" );
}
static final int TRANSACTION_getDeviceList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
static final int TRANSACTION_openDevice = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
static final int TRANSACTION_getCurrentAccessory = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
static final int TRANSACTION_openAccessory = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
static final int TRANSACTION_setDevicePackage = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
static final int TRANSACTION_setAccessoryPackage = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5);
static final int TRANSACTION_hasDevicePermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6);
static final int TRANSACTION_hasAccessoryPermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 7);
static final int TRANSACTION_requestDevicePermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 8);
static final int TRANSACTION_requestAccessoryPermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 9);
static final int TRANSACTION_grantDevicePermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 10);
static final int TRANSACTION_grantAccessoryPermission = (android.os.IBinder.FIRST_CALL_TRANSACTION + 11);
static final int TRANSACTION_hasDefaults = (android.os.IBinder.FIRST_CALL_TRANSACTION + 12);
static final int TRANSACTION_clearDefaults = (android.os.IBinder.FIRST_CALL_TRANSACTION + 13);
static final int TRANSACTION_setCurrentFunction = (android.os.IBinder.FIRST_CALL_TRANSACTION + 14);
static final int TRANSACTION_setMassStorageBackingFile = (android.os.IBinder.FIRST_CALL_TRANSACTION + 15);
}
/* Returns a list of all currently attached USB devices */
public void getDeviceList( android.os.Bundle devices ) throws android.os.RemoteException;
/* Returns a file descriptor for communicating with the USB device.
* The native fd can be passed to usb_device_new() in libusbhost.
*/
public android.os.ParcelFileDescriptor openDevice( java.lang.String deviceName ) throws android.os.RemoteException;
/* Returns the currently attached USB accessory */
public android.hardware.usb.UsbAccessory getCurrentAccessory() throws android.os.RemoteException;
/* Returns a file descriptor for communicating with the USB accessory.
* This file descriptor can be used with standard Java file operations.
*/
public android.os.ParcelFileDescriptor openAccessory( android.hardware.usb.UsbAccessory accessory ) throws android.os.RemoteException;
/* Sets the default package for a USB device
* (or clears it if the package name is null)
*/
public void setDevicePackage( android.hardware.usb.UsbDevice device, java.lang.String packageName ) throws android.os.RemoteException;
/* Sets the default package for a USB accessory
* (or clears it if the package name is null)
*/
public void setAccessoryPackage( android.hardware.usb.UsbAccessory accessory, java.lang.String packageName ) throws android.os.RemoteException;
/* Returns true if the caller has permission to access the device. */
public boolean hasDevicePermission(android.hardware.usb.UsbDevice device) throws android.os.RemoteException;
/* Returns true if the caller has permission to access the accessory. */
public boolean hasAccessoryPermission( android.hardware.usb.UsbAccessory accessory ) throws android.os.RemoteException;
/* Requests permission for the given package to access the device.
* Will display a system dialog to query the user if permission
* had not already been given.
*/
public void requestDevicePermission( android.hardware.usb.UsbDevice device, java.lang.String packageName, android.app.PendingIntent pi ) throws android.os.RemoteException;
/* Requests permission for the given package to access the accessory.
* Will display a system dialog to query the user if permission
* had not already been given. Result is returned via pi.
*/
public void requestAccessoryPermission( android.hardware.usb.UsbAccessory accessory, java.lang.String packageName, android.app.PendingIntent pi ) throws android.os.RemoteException;
/* Grants permission for the given UID to access the device */
public void grantDevicePermission( android.hardware.usb.UsbDevice device, int uid ) throws android.os.RemoteException;
/* Grants permission for the given UID to access the accessory */
public void grantAccessoryPermission( android.hardware.usb.UsbAccessory accessory, int uid ) throws android.os.RemoteException;
/* Returns true if the USB manager has default preferences or permissions for the package */
public boolean hasDefaults( java.lang.String packageName ) throws android.os.RemoteException;
/* Clears default preferences and permissions for the package */
public void clearDefaults( java.lang.String packageName ) throws android.os.RemoteException;
/* Sets the current USB function. */
public void setCurrentFunction( java.lang.String function, boolean makeDefault ) throws android.os.RemoteException;
/* Sets the file path for USB mass storage backing file. */
public void setMassStorageBackingFile( java.lang.String path ) throws android.os.RemoteException;
}
步骤二:再创建android.os包,添加ServiceManager.java类:
package android.os;
import java.util.Map;
public final class ServiceManager
{
public static IBinder getService( String name )
{
throw new RuntimeException( "Stub!" );
}
/**
* Place a new @a service called @a name into the service
* manager.
*
* @param name the name of the new service
* @param service the service object
*/
public static void addService( String name, IBinder service )
{
throw new RuntimeException( "Stub!" );
}
/**
* Retrieve an existing service called @a name from the
* service manager. Non-blocking.
*/
public static IBinder checkService( String name )
{
throw new RuntimeException( "Stub!" );
}
public static String[] listServices() throws RemoteException
{
throw new RuntimeException( "Stub!" );
}
/**
* This is only intended to be called when the process is first being brought
* up and bound by the activity manager. There is only one thread in the process
* at that time, so no locking is done.
*
* @param cache the cache of service references
* @hide
*/
public static void initServiceCache( Map<String, IBinder> cache )
{
throw new RuntimeException( "Stub!" );
}
}
如何忽略usb host 模式设备连接确认对话框的更多相关文章
- android usb Host模式下与usb Hid 设备的通信
做android 与USB HID设备的通信有段时间了,总结一下遇到的问题和解决方法: 1,第一次遇到的问题:android 版本低不支持usb hid, 被要求做相关项目的时候,就从mUsbMana ...
- USB协议-检测设备连接与速度
在USB设备连接时,USB系统能自动检测到这个连接,并识别出其采用的数据传输速率.USB采用在D+或D-线上增加上拉电阻的方法来识别低速和全速设备. USB支持3种类型的传输速率:1.5Mb/s的低速 ...
- Android开启OTG功能/USB Host API功能
Android USB 模式简介 设备模式 当计算机或其他USB主机需要连接安卓设备时,此时安卓设备是作为"USB设备"角色的,在计算机上显示为 USB 外设.现在的安卓设备已经被 ...
- 翻译Android USB HOST API
翻译Android USB HOST API 源代码地址:http://developer.android.com/guide/topics/connectivity/usb/host.html 译者 ...
- [Linux网络、命名空间、veth设备对、docker的host模式、container模式、none模式、brideg模式、网桥的增删查,容器与网桥的连接断开]
[Linux网络.命名空间.veth设备对.docker的host模式.container模式.none模式.brideg模式.网桥的增删查,容器与网桥的连接断开] 网络名称空间 为了支持网络协议栈的 ...
- 豌豆荚不能连接三星S4手机,提示打开手机的“USB调试模式”,但却找不到在哪儿可以设置
1. 问题 豌豆荚不能连接三星S4手机,下载了三星S4手机的驱动后,提示打开手机的“USB调试模式”,但却找不到在哪儿可以设置. 2. 原因 S4 默认隐藏开发者选项,所以默认不可以设置“USB调试模 ...
- Android USB Host 与 Hid 设备通信bulkTransfer()返回-1问题的原因
近期一直在做Android USB Host 与USB Hid设备(STM32FXXX)的通信,遇到了很多问题.项目源码以及所遇到的其他问题可以见本博客其他相关文章,这里重点讲一下bulkTransf ...
- android usb host 读写USB设备
自android3.1以后android增加了操作USB设备的API. 官网地址:http://developer.android.com/guide/topics/connectivity/usb/ ...
- 【转】Android实战技巧之四十九:Usb通信之USB Host
零 USB背景知识 USB是一种数据通信方式,也是一种数据总线,而且是最复杂的总线之一. 硬件上,它是用插头连接.一边是公头(plug),一边是母头(receptacle).例如,PC上的插座就是母头 ...
随机推荐
- 20160611-20160714springmvc入门进阶
springmvc第二阶段 高级知识 复习: springmvc框架: DispatcherServlet前端控制器:接收request,进行response HandlerMapping处理器映射器 ...
- 全局负载均衡GSLB之“部署篇”
http://virtualadc.blog.51cto.com/3027116/875622 前言 随着web应用的不断发展,客户对于业务的稳定性.可靠性等也提出更高的要求,已不再局限于IDC内部的 ...
- C#构造函数相关主题
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threa ...
- ASP.NET 使用C#代码设置页面元素中的样式或属性
在HTML元素的属性中加上runat ="server"和ID="MyTag"即可在后台代码中通过设置MyTag.Style的值来控制样式. 例如:在前端页面加 ...
- OC2_分数类
// // Fraction.h // OC2_分数类 // // Created by zhangxueming on 15/6/10. // Copyright (c) 2015年 zhangxu ...
- 2016ACM竞赛训练暑期课期末考试 a题
描述 给出n个正整数,任取两个数分别作为分子和分母组成最简真分数,编程求共有几个这样的组合. 输入 第一行是一个正整数n(n<=600).第二行是n个不同的整数,相邻两个整数之间用单个空格隔开. ...
- NOIP200905
暴力,简单,,, 题目好长,差点没读完 试题描述 R国和S国正陷入战火之中,双方都互派间谍,潜入对方内部,伺机行动.历经艰险后,潜伏于S国的R国间谍小C终于摸清了S国军用密码的编码规则:1)S国军方内 ...
- 伪分布式环境下命令行正确运行hadoop示例wordcount
首先确保hadoop已经正确安装.配置以及运行. 1. 首先将wordcount源代码从hadoop目录中拷贝出来. [root@cluster2 logs]# cp /usr/local/h ...
- mysql 常用命令搜集
查看MYSQL数据库中所有用户及拥有权限 mysql> SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query F ...
- PC软件-实用工具 True Launch Bar
True Launch Bar 官网 增强及自定义window任务栏快捷方式管理. 有免费版的Free Launch Bar 官网