gpt4 book ai didi

android - 如何识别*哪个*蓝牙设备导致 ACTION_ACL_CONNECTED 广播?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:56:33 25 4
gpt4 key购买 nike

我想监听许多特定蓝牙设备的连接/断开连接,这些设备的 MAC 地址我知道,但不一定配对(我不想弄乱用户的配对设备列表,反之亦然)。我只对发现他们的存在感兴趣,而不是与他们交流。

这与我下面的代码配合得很好!但我的问题是我无法找出哪个特定设备正在连接/断开连接,只是它发生在其中的某个人身上。我如何找出操作涉及哪一个?

首先,我为我的两个特定物理蓝牙设备实例化对象并将它们添加到我的 Intent 过滤器中:

    BluetoothDevice myPinkHeadset = mBluetoothAdapter.getRemoteDevice("18:17:0C:EB:9C:81");
BluetoothDevice myPcBluetoothDongle = mBluetoothAdapter.getRemoteDevice("5A:7A:CC:4B:C5:08");

IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(myPinkHeadset.ACTION_ACL_CONNECTED);
intentFilter.addAction(myPinkHeadset.ACTION_ACL_DISCONNECTED);
intentFilter.addAction(myPcBluetoothDongle.ACTION_ACL_CONNECTED);
intentFilter.addAction(myPcBluetoothDongle.ACTION_ACL_DISCONNECTED);

然后我收听关于他们的广播:

    final BroadcastReceiver intentReceiver = new BroadcastReceiver() {  
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();

现在我想知道哪个已连接和/或断开连接,但我不知道该怎么做。

要么 1) 我直接使用“BluetoothDevice”。它对广播的 react 很好,但它没有告诉我该操作涉及两个物理设备中的哪一个。他们是找出答案的方法吗?不允许使用 Bluetooth.getName(),因为它不是静态类。

if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) { 
}

或 2) 我监听两个设备的两个 Action 。

        if (myPinkHeadset .ACTION_ACL_CONNECTED.equals(action)) {
Log.v(TAG, "Connected to myPinkHeadset ");
}
else if (myPinkHeadset .ACTION_ACL_DISCONNECTED.equals(action)) {
Log.v(TAG, "Disconnected from myPinkHeadset ");
}
else if (myPcBluetoothDongle .ACTION_ACL_CONNECTED.equals(action)) {
Log.v(TAG, "Connected to myPcBluetoothDongle ");
}
else if (myPcBluetoothDongle .ACTION_ACL_DISCONNECTED.equals(action)) {
Log.v(TAG, "Disconnected from myPcBluetoothDongle ");

但随后它记录它与 myPinkHeadset 连接,即使它是我物理激活的 myPvBluetoothDongle。它总是适用于 if 测试的第一个。它只关心 Action 本身,而不关心它涉及哪个对象。

我看到 EXTRA_DEVICE 是“在此类的每个 Intent 广播中用作 Parcelable BluetoothDevice 额外字段”。但它只返回 null 给我:

String extra = intent.getStringExtra(BluetoothDevice.EXTRA_DEVICE);

最佳答案

这使设备连接到:

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

作为新手,我误解了parcelable的概念。 EXTRA_DEVICE 是一个字符串,但它只是对象的一个​​标签。因此无需注册或监听 BluetoothDevice 的各个实例。当一个 Action 被广播时, Intent 会告诉它是哪个物理设备引起的。 (我可以为此 +1 自己吗:-D)

关于android - 如何识别*哪个*蓝牙设备导致 ACTION_ACL_CONNECTED 广播?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9459680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com