我想创建一个广播接收器,它会在蓝牙设备与其他设备连接时进行监听。
我只发现这个。
<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
只有在搜索服务时才会激活,而不是在与其他设备建立蓝牙连接时激活。
我是对的还是我该怎么做?