我知道可以按照问题
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()); }