- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建需要 USB 权限的信息亭应用程序。它将作为我们设备上的系统应用程序及其设备所有者应用程序添加到 AOSP 镜像中。
应用程序在主机模式下通过 USB 控制外部设备,所以它如何默认获得 USB 权限,这样用户就不需要每次都给 USB 设备关闭电源。平板电脑将封闭外壳,因此用户无法访问它控制的 USB 端口和设备。
所以我希望某些 USB 设备默认受信任。如何实现?我如何绕过我的应用程序的 android usb 主机权限确认对话框。
可以this用的方法??
然后我发现了一些关于whitelisting的事情设备。如果它是可行的解决方案,明天将尝试。
最佳答案
回复
Managed to get intent-filter working. Problem is that when powering the tablet it will query from user permission to startup application. So i still get query once. Problem is that i have 2 USB devices and it gives permission to first one. – Jude
抱歉,我无法发表评论,但我看到的是请求权限 onCreate() 只请求了一次。但是,在 onResume() 中请求对多个设备都运行良好!我有多个对话,而且对话计数也与授予的权限日志语句不匹配。因此,例如,我将只请求一次对一台相机设备和另一台设备的许可。
但是,每次我接受时,我都会收到 2 个相机对话框和 2 个其他设备对话框,以及多个日志语句。就像 2 个对话一样,我得到了 4 个权限授予语句,所以很难说出内部到底发生了什么。而且这些消息每次都不一致。有时我会收到 2 个对话的 4 条消息,有时我会收到 3 或 5 条消息。
但为了您的引用,我将附上我的代码,它运行良好,我可以获得我尝试使用的两种设备的许可,
private static final String TAG = "BLH/USBTest";
private static final String ACTION_USB_PERMISSION = "com.blhealthcare.example.USB_PERMISSION";
private static final int CAM_USB_PERM_CODE = 4532;
private static final int STETH_USB_PERM_CODE = 4533;
UsbManager usbManager;
UsbDevice camDevice;
UsbDevice stethDevice;
List<UsbInterface> camInterfaces = new ArrayList<>();
List<UsbInterface> stethInterfaces = new ArrayList<>();
private boolean camPermGranted = false;
private boolean stethPermGranted = false;
private final BroadcastReceiver usbReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
int reqCode = intent.getIntExtra("requestCode", 0);
if (ACTION_USB_PERMISSION.equals(action)) {
synchronized (this) {
UsbDevice device = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
if (device != null) {
if (reqCode == CAM_USB_PERM_CODE) {
Log.d(TAG, "onReceive: Permission granted for Camera");
camPermGranted = true;
} else if (reqCode == STETH_USB_PERM_CODE) {
Log.d(TAG, "onReceive: Permission granted for Steth");
stethPermGranted = true;
}
}
} else {
Log.d(TAG, "Permission denied for device " + device);
}
}
}
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
usbManager = (UsbManager) getSystemService(Context.USB_SERVICE);
initializeUSBDevices();
checkUSBInput();
}
// Helpers
private void requestCamPerm(Context context) {
Intent camIntent = new Intent(ACTION_USB_PERMISSION);
camIntent.putExtra("requestCode", CAM_USB_PERM_CODE);
PendingIntent camPermIntent = PendingIntent.getBroadcast(context, CAM_USB_PERM_CODE, camIntent, 0);
usbManager.requestPermission(camDevice, camPermIntent);
}
private void requestStethPerm(Context context) {
Intent stethIntent = new Intent(ACTION_USB_PERMISSION);
stethIntent.putExtra("requestCode", STETH_USB_PERM_CODE);
PendingIntent stethPermIntent = PendingIntent.getBroadcast(context, STETH_USB_PERM_CODE, stethIntent, 0);
usbManager.requestPermission(stethDevice, stethPermIntent);
}
private void initializeUSBDevices() {
String camvId = "4f2";
String stethvId = "d8c";
camDevice = getUsbDeviceFromVid(camvId);
stethDevice = getUsbDeviceFromVid(stethvId);
}
private UsbDevice getUsbDeviceFromVid(String vid) {
UsbManager usbManager = (UsbManager) getSystemService(Context.USB_SERVICE);
if (usbManager != null) {
for (UsbDevice d : usbManager.getDeviceList().values()) {
if (Integer.toHexString(d.getVendorId()).equals(vid)) {
// Log.d(TAG, "USBDevices: Found Device VID: " + vid);
return d;
}
}
}
return null;
}
@Override
protected void onResume() {
super.onResume();
IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
registerReceiver(usbReceiver, filter);
requestCamPerm(this);
requestStethPerm(this);
}
哦,顺便说一句,我没有在 list 中提供任何额外的东西,比如 vendorId 等。只有一件事,
<uses-feature android:name="android.hardware.usb.host"/>
编辑* - 终于明白了。
所以就像大家提到的,
android:directBootAware="true"
重启后仍然存在
关于android - 如何授予 USB 权限,以便我的信息亭设备不询问确认对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46198519/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
Android 权限(您在 list 中请求并在安装时显示的权限)是否与 root 用户在 root 手机上获得的 linux 权限相同? 更确切地说:如果我的手机上有 root 权限并且我有一个可以
我经常读到 VIEW 的一个目的是安全性:允许一些用户访问基础表,而其他用户只允许访问派生 View 。考虑到这一点,我设计了几个向外部用户提供受限数据集的 View 。 一切都很好,但在实践中这是行
在 Facebook API v2.3 中,“user_posts”听起来像是“user_status”的超集。是这样吗?如果我已经有“user_posts”,为什么还需要“user_status”?
在为 BLUETOOTH_CONNECT 请求运行时权限后,android 12 崩溃了,我在 Samsung Android 12 设备中遇到了这个问题。在其他低于 Android 12 的设备上运
请理解这个问题可能有点头晕,因为这是我第一次提问。另外,请理解语法可能很奇怪,因为我不擅长英语并使用翻译。 我是一个在 Android 工作室中使用 java 制作应用程序的人。 尝试使用蓝牙时出现连
我刚刚将我的 Magento 商店从 cPanel 移动到 DirectAdmin (Centos)。 我的问题现在是权限。以前在 cPanel 上,所有文件夹都设置为 755 和文件 644。这很好
我希望在我的 Django 项目中获得更细粒度的权限,但无法决定使用哪个应用程序。 我所拥有的是这样的: class Item(models.Model): name = models.Cha
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我们已经设置了一个 Github 应用程序,以便它使用 Github API 自动为另一个个人 Github 用户创建一个存储库。现在我们遇到了一个问题,不是每个人都想让我们完全读取他们所有的私有(p
假设我有一个网站想要访问 Facebook 的用户帐户信息。通常,用户会获得网站要求的所有权限,并且可以整体上允许或拒绝这些权限。 是否可以让用户选择(例如,通过授权屏幕上每个权限的复选框)他想授予网
平台下载地址:https://gitee.com/alwaysinsist/edp 权限介绍 权限实际上就是谁有权使用或是访问什么,这里的“谁”可以视作"授权对象",&qu
playstore 给我发这个消息 We've detected that your app contains the requestLegacyExternalStorage flag in the
我可以在没有 sudo 的情况下运行 docker,但有时它会再次请求权限,我无法在 VS 代码中附加容器 Got permission denied while trying to connect
我正在尝试在 Ubuntu 中的可执行文件上运行 gdb。但是,当我尝试在 gdb 中运行 run 时,出现以下错误。 /vagrant/unit_test: cannot execute: Perm
我的应用程序工作了一年,然后对 instagram 的 API 调用停止返回任何数据。 我使用以下 instagram 端点: https://api.instagram.com/v1/media/s
我使用 TFS 2012 并希望为 TFS 用户组设置以下权限。 允许创建新问题项。 拒绝创建新的任务项。 拒绝更改他的任务项,只能更改提醒时间、描述和状态。并且不能更改分配的用户、优先级和迭代。 我
我有一个谷歌计算引擎实例,我使用与我的 glcoud 帐户关联的 SSH key 通过 SFTP 连接到该实例。但是,我无法将任何文件上传到/var/www 目录,尽管我可以读取目录列表。/var/w
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我不确定如何正确处理以下情况: 我的程序通过安装程序安装 我在应用程序文件夹中创建SQLite数据库(程序启动时) 在某些配置中,我收到“ Attemt写入只读数据库”错误。这是权限问题,现在我通过将
我是一名优秀的程序员,十分优秀!