我在 onItemClickListener 中使用以下代码
BluetoothDevice device;
device = btAdapter.getRemoteDevice(address);
Intent intent1 = new Intent("android.bluetooth.device.action.PAIRING_REQUEST");
intent1.putExtra("android.bluetooth.device.extra.DEVICE", device);
intent1.putExtra("android.bluetooth.device.extra.PAIRING_VARIANT", 0);
intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent1);
它会打开用户输入密码的配对对话框,但实际上并没有配对。
之前有人问过一个非常相似的问题,但没有人回答,希望我能有更多的运气