许多重新连接后,onConnectionStateChange中的状态为GATT_FAILURE

时间:2016-03-11 08:13:02

标签: android bluetooth bluetooth-lowenergy gatt

我通过以下方式连接到ble设备:

 mBluetoothGatt = device.connectGatt(this.context, false, mGattCallback);

而不是

 mBluetoothGatt.disconnect();

但如果我快速完成,那么我会在status=BluetoothGatt.GATT_FAILURE onConnectionStateChange

中收到mGattCallback

然后即使关闭/打开蓝牙,我也无法再次连接到GATT。

只有强制停止应用才能解决问题

1 个答案:

答案 0 :(得分:3)

通过在状态为mBluetoothGatt.close();

时添加STATE_DISCONNECTED来修复
private 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();
                    }
                }