Android Bluetooth 配对

android 配对与取消配对的方法:

Android Bluetooth 配对
private void pairDevice(BluetoothDevice device) {
try {
    if (D)
    Log.d(TAG, "Start Pairing...");

    waitingForBonding = true;

    Method m = device.getClass()
        .getMethod("createBond", (Class[]) null);
    m.invoke(device, (Object[]) null);

    if (D)
    Log.d(TAG, "Pairing finished.");
} catch (Exception e) {
    Log.e(TAG, e.getMessage());
}
}

private void unpairDevice(BluetoothDevice device) {
try {
    Method m = device.getClass()
        .getMethod("removeBond", (Class[]) null);
    m.invoke(device, (Object[]) null);
} catch (Exception e) {
    Log.e(TAG, e.getMessage());
}
}
Android Bluetooth 配对

Android Bluetooth 配对,布布扣,bubuko.com

Android Bluetooth 配对

上一篇:参考---sql发布订阅


下一篇:SQL Server 2008新特性——更改跟踪