IM、视频直播、蓝牙专题Android知识Android技术知识

Android BLE开发中踩过的坑

2016-09-05  本文已影响3371人  fengmlo

Android在4.3中引入了对BLE的支持,BLE基本使用方法请参考Android BLE开发入门

以下是我在BLE开发中遇到的坑:

try {
    Method localMethod = mBluetoothGatt.getClass().getMethod("refresh");
    if (localMethod != null) {
        return (Boolean) localMethod.invoke(mBluetoothGatt);
    }
} catch (Exception localException) {
    Log.e("refreshServices()", "An exception occured while refreshing device");
}
上一篇 下一篇

猜你喜欢

热点阅读