如何在使用 Java 的 android 中显示蓝牙设备名称?有什么代码供我参考吗?
问问题
24448 次
1 回答
18
下面的代码将为您提供蓝牙名称,这里mBluetoothAdapter
是 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;
}
于 2011-07-12T09:48:16.107 回答