gpt4 book ai didi

android - 获取 Android BluetoothDevice 的重命名名称

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:50 25 4
gpt4 key购买 nike

我的 Android 手机允许我重命名已配对的设备,方法是转至 [设置 > 无线和网络 > 蓝牙] Activity 页面并单击已配对蓝牙设备右侧的设置按钮。但是,当我使用 BluetoothAdapter.getBondedDevices() 查询绑定(bind)设备列表时函数,结果中显示的名称是设备的默认名称。

如何访问蓝牙设备的重命名名称?

最佳答案

您应该使用别名

设置重命名设备:

try {
Method method = device.getClass().getMethod("setAlias", String.class);
if(method != null) {
method.invoke(device, "new_device_name");
}
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}

获取设备名称:

String deviceAlias = device.getName();
try {
Method method = device.getClass().getMethod("getAliasName");
if(method != null) {
deviceAlias = (String)method.invoke(device);
}
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}

关于android - 获取 Android BluetoothDevice 的重命名名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20658142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com