我正在尝试在退出应用时断开特征通知。以下是我在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仍然连接。
这是一个问题,因为当应用程序完成并销毁所有资产时,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()
然后继续发布onNotify()调用,即使应用程序在awile之前终止,也会触发onCharacteristicChanged()调用:
D/BluetoothGatt﹕ onNotify() - Device=54:4A:16:26:A1:B5 UUID=0000ffe1-0000-1000-8000-00805f9b34fb
有关如何在退出应用时正确断开GATT特征通知的建议吗?
答案 0 :(得分:1)
似乎你不能一起调用这些方法。断开连接回调可能晚于执行close()方法。
你可以添加mGatt.close();进入onConnectionStateChange回调以关闭连接。