我使用以下代码获取手机中所有配对设备的列表:
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
List<String> s = new ArrayList<String>();
for (BluetoothDevice bt : pairedDevices) {
s.add(bt.getName());
}
for (int index = 0; index < s.size(); index++) {
Toast.makeText(this, "Device Name: " + s.get(index), Toast.LENGTH_SHORT).show();
}
我的蓝牙耳机已配对,我希望我的应用程序以这种方式连接到这些耳机: