蓝牙设备连接/断开时广播?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝牙设备连接/断开时广播?相关的知识,希望对你有一定的参考价值。
我希望在连接特定蓝牙设备时启动服务,并在断开连接时停止此服务。显然我不希望有一个后台服务,总是检查BT设备是否已连接,所以我想用接收器实现这一点。
这有可能吗? android.bluetooth.device.action.ACL_CONNECTED
被提及here,但显然它没有用。
谢谢!
答案
<intent-filter>
<action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
<action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
</intent-filter>
这些是您必须使用广播接收器添加的过滤器。
当蓝牙连接时,ACL_CONNECTED
发出信号,ACL_DISCONNECTED
发出蓝牙断开信号
对于特定设备,您必须检查广播接收器中的意图/上下文
您必须添加的两个权限是:
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
我认为这应该可以解决你的问题。
以上是关于蓝牙设备连接/断开时广播?的主要内容,如果未能解决你的问题,请参考以下文章