1
我是剛接觸android並嘗試以編程方式連接BluetoothDevice。設備有一個PIN。連接到設備是在另一個線程比UI。到目前爲止,我已經遵循How to programmatically pair a bluetooth device on Android的示例。Android:隱藏配對對話框
對BluetoothDevice.ACTION_PAIRING_REQUEST我將字符串轉換爲byte []並執行setPin調用。配對對話框彈出並消失。像
Method createBondMethod1 = device.getClass().getMethod("cancelPairingUserInput"); Boolean returnValue2 = (Boolean) createBondMethod1.invoke(device);
的任何行動都未能上setPin。 當調用device.createBond()時觸發BluetoothDevice.ACTION_PAIRING_REQUEST。
問題是我該如何隱藏配對對話框?
謝謝。