2
我正在開發藍牙應用程序。除其他外,它包括顯示配對和可見設備的列表視圖。對那些未成龍點擊打開了,我已經使用這個代碼 -Android藍牙 - createBond返回值
Class class1 = Class.forName("android.bluetooth.BluetoothDevice");
Method createBondMethod = class1.getMethod("createBond");
int position = ((AdapterContextMenuInfo)item.getMenuInfo()).position;
boolean result = ((Boolean)createBondMethod.invoke(pairedDevices.get(position).getDevice())).booleanValue();
我觀察到,此方法立即返回,而無需等待配對完成實施的配對對話框。但我需要知道配對是否成功。這是在函數的返回值中指示的還是有其他方式知道它?
由於提前,