显示Android蓝牙设备名称
如何在使用Java的android中显示蓝牙设备名称?有什么代码可以参考吗?
How to display a bluetooth device name in android which uses Java? Any codes for me to refer to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的代码将为您提供蓝牙名称。这里的
mBluetoothAdapter
是BluetoothAdapter
类型。The below code will get you the bluetooth name. Here
mBluetoothAdapter
is of typeBluetoothAdapter
.导入 android.provider.Settings.Secure;私有字符串 android_id = Secure.getString(getContext().getContentResolver(),secure.ANDROID_ID);蒂
import android.provider.Settings.Secure; private String android_id = Secure.getString(getContext().getContentResolver(),secure.ANDROID_ID); thi