我正在构建一个应用程序,我将扫描所有蓝牙设备并连接到感兴趣的蓝牙设备。 我读到我需要设备的UUID才能连接到它。
我使用以下代码获取UUIDS
Class cl = Class.forName("android.bluetooth.BluetoothDevice");
Class[] par = {};
Method method = cl.getMethod("getUuids", par);
Object[] args = {};
ParcelUuid[] retval = (ParcelUuid[]) method.invoke(device, args);
return retval;
现在这将返回一个UUID数组。现在我如何识别我必须使用哪个UUID进行连接?