我对Android的BLE扫描有问题,我没有找到所扫描设备的全名,我只收到第一封信你知道如何解决这个问题吗?
我正在使用支持BLE的7.0 Nougat设备
这是我的代码的一部分:
mBluetoothScanner = mBluetoothAdapter.getBluetoothLeScanner();
settings = new ScanSettings.Builder()
.setScanMode(ScanSettings.SCAN_MODE_LOW_POWER)
.build();
if (Build.VERSION.SDK_INT >= 21) {
mScanCallback = new ScanCallback() {
@Override
public void onScanResult(int callbackType, ScanResult result) {
messageLog.error("onScanResult");
BluetoothDevice btDevice = null;
if (Build.VERSION.SDK_INT >= 21) {
btDevice = result.getDevice();
messageLog.error("btDevice : " + btDevice.getName() + "|" + btDevice.getAddress() + "|" + Arrays.toString(btDevice.getUuids()));
}
if (btDevice != null && btDevice.getName() != null && !isInDeviceList(btDevice))
mDeviceList.add(btDevice);
}
@Override
public void onBatchScanResults(List<ScanResult> results) {
}
@Override
public void onScanFailed(int errorCode) {
Log.e("Scan Failed", "Error Code: " + errorCode);
}
};
}
使用btDevice.getName()我只能获得扫描设备的第一个字母,这是我的错还是来自Android BLE API?
答案 0 :(得分:1)
如果外围设备的名称不适合广告数据,因为它需要在其中包含其他数据,它只会通过广播发送名称的前缀。除了更改外围设备固件中的广告数据之外,您无能为力。
要获取确切的广告数据,您可以调查onScanResult中的“result.getScanRecord()”ScanRecord。