android 蓝牙配对请求

发布于 2024-09-29 17:14:39 字数 30 浏览 2 评论 0原文

你能帮我吗?如何检查用户是否拒绝蓝牙配对请求?

Could you help me? How could I check if user denyed bluetooth pairing request?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

王权女流氓 2024-10-06 17:14:39

一旦用户按下蓝牙配对请求屏幕上的“取消”,

就立即采取行动

android.bluetooth.BluetoothDevice.ACTION_BOND_STATE_CHANGED

被触发,并在其中与 int key 捆绑

android.bluetooth.BluetoothDevice.EXTRA_BOND_STATE

具有价值

android.bluetooth BluetoothDevice.BONE_NONE

例如,为操作注册广播接收器后,获取如下 int 值。
然后您就会知道用户是否在配对屏幕上按下了取消。

if (intent.getExtras().getInt(BluetoothDevice.EXTRA_BOND_STATE) == BluetoothDevice.BOND_NONE) {
}

As soon as the user press Cancel on the Bluetooth Pairing Request Screen,

intent with action

android.bluetooth.BluetoothDevice.ACTION_BOND_STATE_CHANGED

is fired, and inside it, bundle with int key

android.bluetooth.BluetoothDevice.EXTRA_BOND_STATE

has value

android.bluetooth BluetoothDevice.BONE_NONE

For example, after registering broadcast receiver for the action, get int value like below.
Then you will know if user pressed cancel on the pairing screen.

if (intent.getExtras().getInt(BluetoothDevice.EXTRA_BOND_STATE) == BluetoothDevice.BOND_NONE) {
}
不醒的梦 2024-10-06 17:14:39

你现在不能轻易做到。因为平台对您隐藏了这一点,所以唯一的选择是检查之前和之后的绑定设备列表

you can't easily right now. Because the platform hides this from you the only option is to check the bonded devices list before and after

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文