如何在安卓 4.3 API 18 中获取绑定设备



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

我可以通过使用getBondedDevices()获取我配对使用的设备A。

但是这个设备A是通过安卓>配置>蓝牙中的蓝牙连接的,而不是

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

或者它有其他方法可以在BT 4.0和API 18中获取配对设备?

以下是获取绑定设备的方法:

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

相关内容

  • 没有找到相关文章

最新更新