Android ble onCharacteristicChanged()无法触发

最近碰到一个比较蛋疼的问题,同一个APP , 运行在不同的手机设备上,onCharacteristicChanged在部分设备上没有回调.
mBluetoothGatt.setCharacteristicNotification(characteristic, enabled);
 在小米Note手机上onCharacteristicChanged是有回调的,在华为小机及rockchip平台上onCharacteristicChanged方法没有被回调.

找了很久终于解决:
   
     for(BluetoothGattDescriptor dp:characteristic.getDescriptors()){
         dp.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
         mBluetoothGatt.writeDescriptor(dp);
     }
 
 
  
增加以上代码,在不同平台上都正常了.

你可能感兴趣的:(Android ble onCharacteristicChanged()无法触发)