如何检查配对设备是否在线 - Android程序

时间:2016-07-29 06:46:28

标签: android-bluetooth

我已创建蓝牙适配器并使用ListView列出配对设备,但如何检查配对设备是否在线?

1 个答案:

答案 0 :(得分:-1)

1.要找到在线但未与您的设备配对的设备,我们将添加一个intent过滤器并注册一个Broadcast接收器,当找到每个设备时将调用Receiver。

请参阅以下链接http://www.coderzheaven.com/2016/03/10/bluetooth-demo-in-android-listing-paired-devies-find-other-online-bt-devices-connect-to-a-bt-device-send-data-from-and-to-bt-devices-chat/

2.一次列出在线设备但想检查设备是否已连接。 请参阅以下链接How to programmatically tell if a Bluetooth device is connected? (Android 2.2)

希望这会有所帮助..