在 Android 上禁用“蓝牙权限请求”确认 - 使用 ACTION_REQUEST_DISCOVERABLE

问题描述 投票:0回答:1

我正在尝试将我的 Android 手机作为蓝牙服务器进行广播,为此,我首先想让 Android “可发现”。

我使用 ACTION_REQUEST_DISCOVERABLE 来执行此操作,如下所示: http://developer.android.com/guide/topics/wireless/bluetooth.html#EnablingDiscoverability

 testIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
 startActivity(testIntent);

不幸的是,这也会在手机上弹出“蓝牙权限请求”对话框。

有没有办法让我的手机“可发现”,而无需提示用户?

谢谢!

android bluetooth broadcast bluetooth-device-discovery
1个回答
0
投票

尝试在您的应用程序中包含 BLUETOOTH_ADMIN 权限

© www.soinside.com 2019 - 2024. All rights reserved.