我想以编程方式在Android棉花糖中设置蓝牙名称,使其对附近具有更新名称的设备可见。
谢谢。

最佳答案

private BluetoothAdapter bluetoothAdapter = null;
bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
bluetoothAdapter.setName("NewDeviceName");//Careful Here


1)不要忘记许可!

2)必须启用蓝牙才能正常工作。

3)启用需要花费时间,因此您应该将setname放入函数中,并且仅在启用时调用它。如果您愿意的话,也许可以延迟一下。
祝好运

10-08 07:23