如何在Android 4.3 API 18中获取保税设备?

时间:2013-10-16 06:00:08

标签: android bluetooth-lowenergy android-4.3-jelly-bean

我正在开发一个应用程序,我必须连接到Android 4.3上的蓝牙设备。

我可以通过使用getBondedDevices()来获取我有paireduse的设备A.

但是这个设备-A是通过蓝牙连接到android-> config-> bluetooth,而不是

Android 4.3 BLE 4.0是否也使用getBondedDevices()来获取我配对的设备?

或者它有其他方法来获得BT 4.0和API 18中的设备对吗?

1 个答案:

答案 0 :(得分:0)

以下是如何获取绑定设备:

BluetoothManager mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);

if (mBluetoothManager != null) {
    BluetoothAdapter mBtAdapter = mBluetoothManager.getAdapter();
    if (mBtAdapter != null) {
        final Set <BluetoothDevice> bonded = mBtAdapter.getBondedDevices();
    }
}