我正在开发一个应用程序,我必须连接到Android 4.3上的蓝牙设备。
我可以通过使用getBondedDevices()来获取我有paireduse的设备A.
但是这个设备-A是通过蓝牙连接到android-> config-> bluetooth,而不是
Android 4.3 BLE 4.0是否也使用getBondedDevices()来获取我配对的设备?
或者它有其他方法来获得BT 4.0和API 18中的设备对吗?
答案 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();
}
}