如何忽略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上的插座就是母头 ...
随机推荐
- SQL SERVER 主键约束
主键约束: 遵循关系型模型中的第二范式.唯一的识别一条记录,不能为空. CREATE TABLE Persons ( Id_P int NOT NULL PRIMARY KEY, LastName v ...
- PowerDesigner使用教程 —— 概念数据模型 (转)
一.概念数据模型概述 概念数据模型也称信息模型,它以实体-联系(Entity-RelationShip,简称E-R)理论为基础,并对这一理论进行了扩充.它从用户的观点出发对信息进行建模,主要用于 ...
- Objective-C 【self的用法】
------------------------------------------- self和super关键字 OC提供了两个保留字self和super,用于在方法定义中引用该执行方法的对象. O ...
- Shell/Bash 变量/variable 循环/loop
如何在bash脚本里面进行循环 #!/bin/bash n=9999 for(( i =1; i<=100;i++)) do /root/testProgram $n sleep 5 n=$(( ...
- Update msi using vbscript
参考: http://stackoverflow.com/questions/1609250/how-do-i-add-update-a-property-inside-an-msi-from-the ...
- OpenJudge 2786 Pell数列
1.链接地址: http://bailian.openjudge.cn/practice/2786 2.题目: 总Time Limit: 3000ms Memory Limit: 65536kB De ...
- linq递归
public class Comment { public int Id { get; set; } public int ParentId { get; set; } public string T ...
- 网址、URL
手册网:http://www.shouce.ren/ in_array().array_search().array_key_exists() http://www.shangxueba.com/ji ...
- [CSS]white-space 属性详解
实例 规定段落中的文本不进行换行: p { white-space: nowrap } 可能的值 值 描述 normal 默认.空白会被浏览器忽略. pre 空白会被浏览器保留.其行为方式类似 HTM ...
- yii YII小部件 创建登录表单表单 Login表单
YII框架必须遵循其表单的创建方法 登录模型错做与数据库操作模型是一致的,不同的是不跟数据库交互 ,用的是小部件,在创建表单之前,要在用户控制模块完成以下代码 protected --models - ...