当我开始我的蓝牙设备发现时,我只想发现外围设备,我的应用程序不能发现/显示其他设备。这怎么可能?
这就是我搜索设备的方式
IntentFilter filter = new IntentFilter("android.bluetooth.devicepicker.action.DEVICE_SELECTED");
registerReceiver(mBtPickReceiver,filter);
startActivity(new Intent("android.bluetooth.devicepicker.action.LAUNCH")
.putExtra("android.bluetooth.devicepicker.action.EXTRA_NEED_AUTH",false));