蓝牙连接通知
如何获取蓝牙设备的信息、可用的其他蓝牙设备和连接通知?
How can I get a bluetooth device's information, available other bluetooth devices and connection notifications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取蓝牙设备,您必须获取 BluetoothAdapter 的实例并调用 <代码>startDiscovery()方法。您还需要注册
ACTION_FOUND
意图。可以这样完成:要获取有关找到的设备的信息,您可以使用
getAddress()
方法。To get bluetooth devices you have to obtain instance of BluetoothAdapter and invoke the
startDiscovery()
method. Also you need to registerACTION_FOUND
intent. It may be done this way:To get information about found device you can use
getAddress()
method .