1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2023 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:fitsSystemWindows="true"
19    android:orientation="horizontal"
20    android:layout_width="match_parent"
21    android:layout_height="wrap_content">
22
23    <TextView
24        android:layout_width="wrap_content"
25        android:layout_height="match_parent"
26        android:text="@string/audio_datapaths_mic"/>
27
28    <TextView
29        android:layout_width="wrap_content"
30        android:layout_height="match_parent"
31        android:text=""
32        android:textStyle="bold"
33        android:id="@+id/audio_datapaths_mic"/>
34
35    <TextView
36        android:layout_width="wrap_content"
37        android:layout_height="match_parent"
38        android:layout_marginStart="5dp"
39        android:text="@string/audio_datapaths_speaker"/>
40
41    <TextView
42        android:layout_width="wrap_content"
43        android:layout_height="match_parent"
44        android:text=""
45        android:textStyle="bold"
46        android:id="@+id/audio_datapaths_speaker"/>
47
48    <TextView
49        android:layout_width="wrap_content"
50        android:layout_height="match_parent"
51        android:layout_marginStart="5dp"
52        android:text="@string/audio_datapaths_MMAP"/>
53
54    <TextView
55        android:layout_width="wrap_content"
56        android:layout_height="match_parent"
57        android:text=""
58        android:textStyle="bold"
59        android:id="@+id/audio_datapaths_MMAP"/>
60
61    <TextView
62        android:layout_width="wrap_content"
63        android:layout_height="match_parent"
64        android:layout_marginStart="5dp"
65        android:text="@string/audio_datapaths_MMAP_exclusive"/>
66
67    <TextView
68        android:layout_width="wrap_content"
69        android:layout_height="match_parent"
70        android:text=""
71        android:textStyle="bold"
72        android:id="@+id/audio_datapaths_MMAP_exclusive"/>
73</LinearLayout>
74