蓝牙连接通知

发布于 2024-10-30 17:48:17 字数 34 浏览 1 评论 0原文

如何获取蓝牙设备的信息、可用的其他蓝牙设备和连接通知?

How can I get a bluetooth device's information, available other bluetooth devices and connection notifications?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朦胧时间 2024-11-06 17:48:17

要获取蓝牙设备,您必须获取 BluetoothAdapter 的实例并调用 <代码>startDiscovery()方法。您还需要注册 ACTION_FOUND 意图。可以这样完成:

private BroadcastReceiver mBlueToothInfoDiscoveryListener = new BroadcastReceiver() {

@Override
public void onReceive(Context context, Intent intent) 
{
    String action = intent.getAction();
    if (BluetoothDevice.ACTION_FOUND.equals(action)) 
    {
         BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
    }
 }

要获取有关找到的设备的信息,您可以使用 getAddress() 方法。

To get bluetooth devices you have to obtain instance of BluetoothAdapter and invoke the startDiscovery() method. Also you need to register ACTION_FOUND intent. It may be done this way:

private BroadcastReceiver mBlueToothInfoDiscoveryListener = new BroadcastReceiver() {

@Override
public void onReceive(Context context, Intent intent) 
{
    String action = intent.getAction();
    if (BluetoothDevice.ACTION_FOUND.equals(action)) 
    {
         BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
    }
 }

To get information about found device you can use getAddress() method .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文