gpt4 book ai didi

Android BLE BluetoothGatt 对象保持连接并触发 onCharacteristicChanged() 即使在调用 disconnect() 之后

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:11:32 32 4
gpt4 key购买 nike

我正试图在退出我的应用程序时断开特征通知。以下是我在 exitCleanup() 函数中的做法:

if (btGatt != null && mWriteChar != null) {
boolean b=btGatt.setCharacteristicNotification(mWriteChar, false);
Log.w("AppInfo", "Exiting and Unsubscribing: " + b);
}

日志显示:Exiting and Unsubscribing: true。到目前为止,一切都很好。然后,我尝试使用以下方法完全断开 GATT 对象:

if (btGatt != null && btManager!=null && btManager.getConnectionState(btDevice, BluetoothProfile.GATT) != BluetoothProfile.STATE_DISCONNECTED ) {
//Making sure that gatt and bt manager are still with us
//Also making sure that the connection state is NOT disconnected
btGatt.disconnect();
btGatt.close();
Log.w( "AppInfo", "FINISHING. Connection state=" + btManager.getConnectionState(btDevice, BluetoothProfile.GATT) );
}

这就是事情变得奇怪的地方。日志现在显示以下内容:FINISHING。 Connection state=2,表示BluetoothDevice仍然处于连接状态。

这是一个问题,因为当应用程序完成并销毁所有 Assets 时,BluetoothGattCallback 仍然继续在幕后接收通知。首先它抛出以下 NullPointerException:

04-25 22:49:54.392  17280-17293/com.myapp.appinfo D/BluetoothGatt﹕ onClientConnectionState() - status=0 clientIf=8 device=54:4A:16:26:A1:B5
04-25 22:49:54.392 17280-17293/com.myapp.appinfo W/BluetoothGatt﹕ Unhandled exception in callback
java.lang.NullPointerException
at android.bluetooth.BluetoothGatt$1.onClientConnectionState(BluetoothGatt.java:168)
at android.bluetooth.IBluetoothGattCallback$Stub.onTransact(IBluetoothGattCallback.java:71)
at android.os.Binder.execTransact(Binder.java:404)
at dalvik.system.NativeStart.run(Native Method)
04-25 22:49:54.402 17280-17280/com.myapp.appinfo D/BluetoothManager﹕ getConnectionState()

然后继续发布触发 onCharacteristicChanged() 调用的 onNotify() 调用,即使在应用程序终止之前也是如此:

D/BluetoothGatt﹕ onNotify() - Device=54:4A:16:26:A1:B5 UUID=0000ffe1-0000-1000-8000-00805f9b34fb

关于如何在退出应用程序时正确断开 GATT 特征通知的任何建议?

最佳答案

看来你不能一起调用这些方法。断开连接回调可能比执行 close() 方法晚到达。

您可以添加 mGatt.close();进入 onConnectionStateChange 回调以关闭连接。

https://code.google.com/p/android/issues/detail?id=183108

关于Android BLE BluetoothGatt 对象保持连接并触发 onCharacteristicChanged() 即使在调用 disconnect() 之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29873241/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com