如何使用蓝牙查找范围内的设备?
我是 android 新手。我想开发一个应用程序,通过编程方式使用蓝牙来查找范围内的设备。如果有人有想法,请给我一些示例代码。
I am new to android.I want to develop an application to find the devices in the range by using Bluetooth programmatically.If any one has idea please give some sample code to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以编程方式使用蓝牙查找范围内的设备。
是的,您可以使用来执行此操作BroadcastReceiver,查看下面的代码,它会对您有所帮助。
开始搜索
查找设备
Find The Devices in the Range by using Bluetooth programmatically.
Yes you can do this using BroadcastReceiver, check out below code, it will help you.
Starting search
Finds a device
创建类似于以下内容的广播接收器并添加设备信息
Create Broad cast receiver something like the following and add the device information
您可能想使用方法 startDiscovery() 。
我现在没有示例代码,但您可能想看看: http://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html#startDiscovery%28%29
希望有帮助!
you might want to use method startDiscovery() .
I dont have a sample code right now but you might want to have a look at : http://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html#startDiscovery%28%29
Hope it helps!