显示Android蓝牙设备名称

问题描述 投票:0回答:2

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

java android eclipse bluetooth device-name
2个回答
21
投票

下面的代码将获取蓝牙名称,这里

mBluetoothAdapter
是类型
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;
}

0
投票

导入 android.provider.Settings.Secure;私有字符串 android_id = Secure.getString(getContext().getContentResolver(),secure.ANDROID_ID);这

© www.soinside.com 2019 - 2024. All rights reserved.