1<LinearLayout
2    xmlns:android="http://schemas.android.com/apk/res/android"
3    android:fitsSystemWindows="true"
4    android:layout_width="match_parent"
5    android:layout_height="wrap_content"
6    android:orientation="vertical">
7
8    <TextView
9        android:layout_width="match_parent"
10        android:layout_height="wrap_content"
11        android:scrollbars="vertical"
12        android:gravity="bottom"
13        android:id="@+id/audio_wired_port_exists"
14        android:textSize="20dp"
15        android:text="@string/audio_wired_exists" />
16
17    <LinearLayout
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:orientation="horizontal">
21
22        <Button
23            android:layout_width="wrap_content"
24            android:layout_height="wrap_content"
25            android:id="@+id/audio_wired_no"
26            android:text="@string/audio_wired_no" />
27
28        <Button
29            android:layout_width="wrap_content"
30            android:layout_height="wrap_content"
31            android:id="@+id/audio_wired_yes"
32            android:text="@string/audio_wired_yes" />
33    </LinearLayout>
34</LinearLayout>
35