蓝牙低功耗检测断开

时间:2016-04-21 03:29:04

标签: bluetooth android-bluetooth bluetooth-lowenergy

这是我的源代码。

    private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() { 
     @Override 
     public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { 
         if (newState == BluetoothProfile.STATE_CONNECTED) { 
                //source code

         } else if (newState == BluetoothProfile.STATE_DISCONNECTED) { 
               //source code

         } 
     } 

我有一个问题。

实际上,蓝牙已经在20秒之前断开连接。但此代码在20秒后检测到断开连接。

我想知道立即检测断线。

给我解决方案。很好。谢谢。

0 个答案:

没有答案