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="wrap_content" 10 android:layout_height="wrap_content" 11 android:text="@string/refmic_test_question"/> 12 13 <LinearLayout 14 android:layout_width="match_parent" 15 android:layout_height="wrap_content" 16 android:orientation="horizontal"> 17 18 <Button 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:soundEffectsEnabled="false" 22 android:text="@string/refmic_test_yes" 23 android:id="@+id/refmic_tests_yes_btn" /> 24 25 <Button 26 android:layout_width="wrap_content" 27 android:layout_height="wrap_content" 28 android:soundEffectsEnabled="false" 29 android:text="@string/refmic_test_no" 30 android:id="@+id/refmic_tests_no_btn" /> 31 32 <Button 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:soundEffectsEnabled="false" 36 android:text="@string/refmic_test_info" 37 android:id="@+id/refmic_test_info_btn" /> 38 </LinearLayout> 39</LinearLayout> 40