0

是否可以创建可以侦听附近设备并将设备信息记录到文件的服务?

4

2 回答 2

1

是的,如 Vipul Shah 所述,您的服务可以侦听新的蓝牙设备,但真正的问题是如何让您的设备首先找到其他蓝牙设备。

ACTION_FOUND 在发现期间发现远程设备时发送。您可以调用BluetoothAdapter.startDiscovery()来启动发现过程,但问题是很少有设备可以正常发现。几年前,设备始终处于可发现状态是很常见的,但现在用户希望根据需要让设备暂时可发现以进行配对。

因此,让服务定期进行发现(并侦听 ACTION_FOUND)是没有意义的,因为它会消耗大量电池,而且您什么也找不到。

如果您知道您正在寻找的设备的蓝牙地址,那么您可以尝试连接它们,但我认为情况并非如此。

于 2012-06-01T14:08:38.823 回答
0

是的,很有可能

第 1 步您将需要创建一项服务

第 2 步您将需要BluetoothDevice.ACTION_FOUND 广播接收器来查找附近的设备。

步骤 3 然后您可以将所有找到的设备一一查询

第 4 步您将快速枚举找到的设备将其信息转储到文件中。

下面是广播接收器

 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            // When discovery finds a device
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object from the Intent
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                // Add the name and address to an array adapter to show in a ListView
                // You will log this information into file.
                mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
            }
        }
    };

为意图操作注册广播接收器,如下所示

IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(mReceiver, filter); // Don't forget to unregister during onDestroy

希望这可以帮助。

于 2012-06-01T04:15:33.337 回答