Android获取蓝牙地址(非mac地址)

方法:

public static String getBlueToothAddress(Context context){
        return android.provider.Settings.Secure.getString(context.getContentResolver(), "bluetooth_address");
    }

猜你喜欢

转载自blog.csdn.net/Marvinhq/article/details/76887915