@Override public void onScanResult(int callbackType, ScanResult result) { BluetoothDevice device = result.getDevice(); Log.i(TAG, "onScanResult: 扫描到设备 " + device.getName() + " RSSI:" + result.getRssi()); int rssi = result.getRssi(); // 获取当前过滤设置 TriStateToggleButton.ToggleStatus filter_status; // 过滤为false, 全部检查 if(XbyActivity.filterProduct){ filter_status = TriStateToggleButton.ToggleStatus.on; }else{ // 三种过滤模式(普通) filter_status = mScanBack.getScanFilterStatus(); } // 过滤无名称设备 if (filter_status != TriStateToggleButton.ToggleStatus.off) { // on mid 都会走无名称过滤 if (device.getName() == null) { return; } }
时间: 2024-02-10 09:35:28 浏览: 170
这段代码是在扫描蓝牙设备时的回调函数,onScanResult()方法会在每扫描到一个设备时回调一次。回调参数包括callbackType和result,其中callbackType表示回调类型,result表示扫描到的设备信息。在方法中,首先通过result.getDevice()获取扫描到的蓝牙设备对象,然后使用Log.i()方法将设备名称和信号强度等信息打印到日志中。接着获取当前的过滤设置,如果过滤为false,则不对设备进行过滤检查;否则,根据过滤模式来对设备进行过滤,例如过滤无名称设备。最后,如果设备名称为null,则返回,否则继续执行后续操作。
相关问题
BluetoothLeScanner.startScan方法代码示例实现蓝牙扫描
好的,以下是BluetoothLeScanner.startScan方法代码示例实现蓝牙扫描:
```java
// 获取蓝牙适配器
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (bluetoothAdapter == null) {
// 设备不支持蓝牙
return;
}
// 获取蓝牙低功耗扫描器
BluetoothLeScanner bluetoothLeScanner = bluetoothAdapter.getBluetoothLeScanner();
if (bluetoothLeScanner == null) {
// 设备不支持蓝牙低功耗
return;
}
// 定义扫描过滤器,只扫描符合 UUID 的设备
List<ScanFilter> scanFilters = new ArrayList<>();
ScanFilter scanFilter = new ScanFilter.Builder()
.setServiceUuid(ParcelUuid.fromString("0000180d-0000-1000-8000-00805f9b34fb")) // 服务 UUID
.build();
scanFilters.add(scanFilter);
// 定义扫描设置,设置扫描模式和回调
ScanSettings scanSettings = new ScanSettings.Builder()
.setScanMode(ScanSettings.SCAN_MODE_LOW_LATENCY) // 低延迟模式
.build();
// 开始扫描
bluetoothLeScanner.startScan(scanFilters, scanSettings, new ScanCallback() {
@Override
public void onScanResult(int callbackType, ScanResult result) {
// 扫描到设备的回调
BluetoothDevice device = result.getDevice();
String name = device.getName();
String address = device.getAddress();
int rssi = result.getRssi();
// 处理扫描结果
Log.d(TAG, "扫描到设备:name=" + name + ", address=" + address + ", rssi=" + rssi);
}
@Override
public void onScanFailed(int errorCode) {
// 扫描失败的回调
Log.e(TAG, "扫描失败,errorCode=" + errorCode);
}
});
// 停止扫描
bluetoothLeScanner.stopScan(new ScanCallback() {});
```
希望能够帮到你。
阅读全文