1<LinearLayout
2    xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content"
5    android:orientation="vertical">
6
7    <TextView
8        android:layout_width="wrap_content"
9        android:layout_height="wrap_content"
10        android:text="@string/refmic_test_question"/>
11
12    <LinearLayout
13        android:layout_width="match_parent"
14        android:layout_height="wrap_content"
15        android:orientation="horizontal">
16
17        <Button
18            android:layout_width="wrap_content"
19            android:layout_height="wrap_content"
20            android:soundEffectsEnabled="false"
21            android:text="@string/refmic_test_yes"
22            android:id="@+id/refmic_tests_yes_btn" />
23
24        <Button
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            android:soundEffectsEnabled="false"
28            android:text="@string/refmic_test_no"
29            android:id="@+id/refmic_tests_no_btn" />
30
31        <Button
32            android:layout_width="wrap_content"
33            android:layout_height="wrap_content"
34            android:soundEffectsEnabled="false"
35            android:text="@string/refmic_test_info"
36            android:id="@+id/refmic_test_info_btn" />
37    </LinearLayout>
38</LinearLayout>
39