java – 更改Android蓝牙设备名称

前端之家收集整理的这篇文章主要介绍了java – 更改Android蓝牙设备名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道可以按照问题 Display Android Bluetooth Device Name解决方案中所述获取本地设备名称

我有兴趣知道的是,我可以更改本地buetooth名称(其他设备在发现模式时看到的).我知道你可以手动改变,但我正在写和应用程序,我想要改变名称(添加一个简单的标志),所以具有相同应用程序的其他设备可以扫描并立即知道手机是否也正在运行的应用程序

tl; dr:如何在Android上更改蓝牙设备名称

解决方法

是的,您可以使用BluetoothAdapter类型的setName(String name)更改设备名称.以下是示例代码
private BluetoothAdapter bluetoothAdapter = null;
    bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

    void ChangeDeviceName(){
                    Log.i(LOG,"localdevicename : "+bluetoothAdapter.getName()+" localdeviceAddress : "+bluetoothAdapter.getAddress());
                    bluetoothAdapter.setName("NewDeviceName");
                    Log.i(LOG,"localdevicename : "+bluetoothAdapter.getName()+" localdeviceAddress : "+bluetoothAdapter.getAddress());
                }
原文链接:https://www.f2er.com/android/125775.html

猜你在找的Android相关文章