Android Bluetooth Pairing: How to make sure to get bluetooth pairing request in the front dialog instead of a notification?
问题 Also, If I get a notification, is there a way to click it programmatically and bring the pairing request to to front? 回答1: for reference to explain why and what, please have a look here: Bluetooth pairing request on notification bar? The solution is quite easy if you know it and if it fits into your application: private void feintBluetoothDeviceDiscovery() { BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter(); btAdapter.startDiscovery(); btAdapter.cancelDiscovery(); } Call