Android ble device is not disconnecting sometime

2019-05-21 09:00发布

  • After doing disconnecte ble device i am getting disconnect callback . but some time still it is not disconnected . in some layer connection state is maintaining . so that i am not able to do reconnect.

i have tested in android 5 & android 6. in HTC One A9, Moto x play, Moto G4

  • If i do bluetooth turn on off. then again disconnect callback is coming and device is disconnecting actually. -Please give some suggestion for resolve issue.
  • I am doing below steps for ble operation
  • 1.Discover ble device.
    1. Connect to device.
    2. onConnectionStateChange (connected) i am doing gatt.discoverServices()
    3. onServicesDiscovered callback i am reading characteristics 5.onCharacteristicRead callback i am doing write characteristics. 6.onCharacteristicWrite call back i am doing gatt.disconnect()
    4. onConnectionStateChange (disconnected) i am doing gatt.close()

In this full process in background device scanning is going on.

2条回答
干净又极端
2楼-- · 2019-05-21 09:17

You need to ensure that you connect to your device no more than once. I found that without adding your own protection, you can inadvertently have multiple connections with one device (that is multiple BluetoothGatt objects in existence) simultaneously. You can communicate with the device via any of these BluetoothGatt objects, so you don't notice the problem at that point. But when you try to disconnect you (erroneously) leave connections open.

To remove this risk you need code roughly like this:

BluetoothGatt mBluetoothGatt;
private BluetoothAdapter.LeScanCallback mLeScanCallback = new BluetoothAdapter.LeScanCallback() {
    @Override
    public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {            
        if (device != null) {
            Log.d(TAG, "LeScanCallback!!!!  device " + device.getAddress());

            boolean foundDevice = false;

            if (device.getName() != null) {
                Log.d(TAG, "LeScanCallback!!!!  " + device.getName());
                // Put your logic here!
                if (device.getName().compareTo("YOUR_DEVICE") == 0) {
                    Log.d(TAG, "Found device by name");
                    foundDevice = true;
                }
                else {
                    Log.d(TAG,"Found " + device.getName());
                }
            }

            if(mBluetoothGatt == null && foundDevice) {
                mBluetoothGatt = device.connectGatt(getApplicationContext(), false, mGattCallback);
                // Make sure to handle failure cases in your callback!

                Log.d(TAG, "Stopping scan."); //Appropriate only if you want to find and connect just one device.
                mBluetoothAdapter.stopLeScan(this);
            }
        }
    }
};
查看更多
爷、活的狠高调
3楼-- · 2019-05-21 09:28

this problem can be connected with not calling stopScan() method. see comment from SoroushA Totally Disconnect a Bluetooth Low Energy Device

查看更多
登录 后发表回答