1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:fitsSystemWindows="true" 5 android:layout_width="match_parent" 6 android:layout_height="wrap_content" 7 android:orientation="vertical"> 8 9 <LinearLayout 10 android:orientation="horizontal" 11 android:layout_width="match_parent" 12 android:layout_height="wrap_content"> 13 <TextView 14 android:text="@string/audioLoopbackInputLbl" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:textSize="18sp"/> 18 19 <TextView 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:paddingLeft="10dp" 23 android:paddingRight="10dp" 24 android:id="@+id/audioLoopbackInputLbl" 25 android:textSize="18sp"/> 26 </LinearLayout> 27 28 <LinearLayout 29 android:orientation="horizontal" 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content"> 32 <TextView 33 android:text="@string/audioLoopbackOutputLbl" 34 android:layout_width="wrap_content" 35 android:layout_height="wrap_content" 36 android:textSize="18sp"/> 37 38 <TextView 39 android:layout_width="match_parent" 40 android:layout_height="wrap_content" 41 android:paddingLeft="10dp" 42 android:paddingRight="10dp" 43 android:id="@+id/audioLoopbackOutputLbl" 44 android:textSize="18sp"/> 45 </LinearLayout> 46 47</LinearLayout>