mBluetoothGatt.getService(uuid)返回null

时间:2013-10-24 02:55:48

标签: android service bluetooth bluetooth-lowenergy

在我的应用程序中,我正在通过谷歌的BLE样本中的助听器服务的UUID号码,即0000a00-0000-1000-8000-00805f9b34fb

但getservice返回null意味着BluetoothGatt不支持该服务。 为什么会这样,有人可以帮助我。

3 个答案:

答案 0 :(得分:3)

您必须首先发现每个文档的给定设备的所有服务。

  

此功能要求已为给定设备完成服务发现。   http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#getService(java.util.UUID)

@Override
    // New services discovered
    public void onServicesDiscovered(BluetoothGatt gatt, int status) {
        if (status == BluetoothGatt.GATT_SUCCESS) {
            BluetoothGattService mBluetoothGattService = mBluetoothGatt.getService(UUID.fromString(serviceUUID));
            if (mBluetoothGattService != null) {
                Log.i(TAG, "Service characteristic UUID found: " + mBluetoothGattService.getUuid().toString());
            } else {
                Log.i(TAG, "Service characteristic not found for UUID: " + serviceUUID);
        }
    }

或者您可以运行搜索

for (BluetoothGattService gattService : gattServices) {
    Log.i(TAG, "Service UUID Found: " + gattService.getUuid().toString());
}

答案 1 :(得分:2)

尝试完成远程数据库的完整发现[1],然后遍历服务。也许你的UUID错了。

[1] http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#discoverServices()

答案 2 :(得分:0)

你的UUID也错了。它应该是0000a00X-0000-1000-8000-00805f9b34fb,而不是0000a00-0000-1000-8000-00805f9b34fb