显示Android蓝牙设备名称

发布于 2024-11-19 17:47:33 字数 45 浏览 2 评论 0原文

如何在使用Java的android中显示蓝牙设备名称?有什么代码可以参考吗?

How to display a bluetooth device name in android which uses Java? Any codes for me to refer to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

宁愿没拥抱 2024-11-26 17:47:33

下面的代码将为您提供蓝牙名称。这里的mBluetoothAdapterBluetoothAdapter类型。

public String getLocalBluetoothName(){
    if(mBluetoothAdapter == null){
        mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    }
    String name = mBluetoothAdapter.getName();
    if(name == null){
        System.out.println("Name is null!");
        name = mBluetoothAdapter.getAddress();
    }
    return name;
}

The below code will get you the bluetooth name. Here mBluetoothAdapter is of type BluetoothAdapter.

public String getLocalBluetoothName(){
    if(mBluetoothAdapter == null){
        mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    }
    String name = mBluetoothAdapter.getName();
    if(name == null){
        System.out.println("Name is null!");
        name = mBluetoothAdapter.getAddress();
    }
    return name;
}
宫墨修音 2024-11-26 17:47:33

导入 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文