6

如何在使用 Java 的 android 中显示蓝牙设备名称?有什么代码供我参考吗?

4

1 回答 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 回答