获取蓝牙地址

    xiaoxiao2021-11-24  67

    public static String getBluetoothMacAddress(Context context) { if ((android.os.Build.VERSION.SDK_INT < 23)) { // 6.0以下系统 String address = BluetoothAdapter.getDefaultAdapter().getAddress(); return id; } else { // 6.0系统 String macAddress = Settings.Secure.getString(context.getContentResolver(), "bluetooth_address"); return macAddress; } }
    转载请注明原文地址: https://ju.6miu.com/read-678496.html

    最新回复(0)