android – 蓝牙连接通知

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

解决方法:

要获得蓝牙设备,您必须获取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()方法.

上一篇:简单的蓝牙数据接收器Android


下一篇:在没有确认消息的情况下激活android蓝牙可见性