如何确定蓝牙是否已连接?

时间:2012-04-04 20:44:25

标签: android bluetooth find connect out

有人可以教我如何找出蓝牙是否连接到其他设备(手机,耳机等)

3 个答案:

答案 0 :(得分:4)

我不知道如何获取当前连接设备的列表,但您可以使用ACL_CONNECTED意图侦听新连接: http://developer.android.com/reference/android/bluetooth/BluetoothDevice.html#ACTION_ACL_CONNECTED

此意图包括与连接所在的远程设备的额外字段。

在Android上,所有蓝牙连接都是ACL连接,因此注册此意图将为您提供所有新连接。

所以,你的接收器看起来像这样:

public class ReceiverBlue extends BroadcastReceiver {
  public final static String CTAG = "ReceiverBlue";
  public Set<BluetoothDevice> connectedDevices = new HashSet<BluetoothDevice>();

  public void onReceive(Context ctx, Intent intent) {

    final BluetoothDevice device = intent.getParcelableExtra( BluetoothDevice.EXTRA_DEVICE );

    if (BluetoothDevice.ACTION_ACL_CONNECTED.equalsIgnoreCase( action ) )   {
      Log.v(CTAG, "We are now connected to " + device.getName() );
      if (!connectedDevices.contains(device))
        connectedDevices.add(device);
    }

    if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equalsIgnoreCase( action ) )    {
      Log.v(CTAG, "We have just disconnected from " + device.getName() );
      connectedDevices.remove(device);
    }
  }
}

答案 1 :(得分:0)

我认为getBondedDevices()会帮助你:)

Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
// If there are paired devices
if (pairedDevices.size() > 0) {
// Loop through paired devices
for (BluetoothDevice device : pairedDevices) {
    // Add the name and address to an array adapter to show in a ListView
    mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
}
}

谢谢:)

答案 2 :(得分:0)

要获取当前已连接的设备:

val adapter = BluetoothAdapter.getDefaultAdapter() ?: return // null if not supported
adapter.getProfileProxy(context, object : BluetoothProfile.ServiceListener {
    override fun onServiceDisconnected(p0: Int) {
    }

    override fun onServiceConnected(profile: Int, profileProxy: BluetoothProfile) {
        val connectedDevices = profileProxy.connectedDevices
        adapter.closeProfileProxy(profile, profileProxy)
    }

}, BluetoothProfile.HEADSET) // or .A2DP, .HEALTH, etc
相关问题