Bluetoothデバイス検出を開始するときに周辺機器を検出したいのですが、アプリが他のデバイスを検出/表示してはなりません。これはどのように可能ですか?
これは私がデバイスを探している方法です
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));