我通过以下方式连接到ble设备:
mBluetoothGatt = device.connectGatt(this.context,false,mGattCallback);
然后
mBluetoothGatt.disconnect();
但如果我快速完成,那么我在mGattCallback的onConnectionStateChange中收到status = BluetoothGatt.GATT_FAILURE
即使关闭/打开蓝牙,我也无法再次连接到GATT.
只有强制停止应用程序才能解决问题
最佳答案
通过添加mBluetoothGatt.close()修复;当状态为STATE_DISCONNECTED时
原文链接:https://www.f2er.com/android/429960.htmlprivate final BluetoothGattCallback mGattCallback =
new BluetoothGattCallback() {
@Override
public void onConnectionStateChange(BluetoothGatt gatt,int status,int newState) {
String intentAction;
if (newState == BluetoothProfile.STATE_CONNECTED) {
} else if (status==133&&newState == BluetoothProfile.STATE_DISCONNECTED) {
mBluetoothGatt.close();
}else if (status==BluetoothGatt.GATT_FAILURE&&newState == BluetoothProfile.STATE_DISCONNECTED){
} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
mBluetoothGatt.close();
}
}