连接配对的蓝牙设备

时间:2018-05-21 23:46:51

标签: java android bluetooth

我使用以下代码获取手机中所有配对设备的列表:

  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();
  }

我的蓝牙耳机已配对,我希望我的应用程序以这种方式连接到这些耳机:

In this way

0 个答案:

没有答案