我发现这段代码可以调用配对对话框:
Method createBondMethod = Class.forName("android.bluetooth.BluetoothDevice").getMethod("createBond");
createBondMethod.invoke(btDevice);
谁能解释一下,为什么要使用反射?
我发现这段代码可以调用配对对话框:
Method createBondMethod = Class.forName("android.bluetooth.BluetoothDevice").getMethod("createBond");
createBondMethod.invoke(btDevice);
谁能解释一下,为什么要使用反射?