我想创建蓝牙 android 应用程序,这样当它与连接的设备断开连接时,它会发出哔哔声。我使用了以下代码
IntentFilter filter = new IntentFilter();
filter.addAction(BluetoothDevice.ACTION_ACL_CONNECTED);
filter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED);
filter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECTED);
this.registerReceiver(mReceiver, filter);
但是在这些情况下,如果任何一个设备(两个)被带走 1 厘米,它会发出哔哔声,我希望它至少在任何设备越过蓝牙范围时发出哔哔声??????
提前致谢