1 <?xml version="1.0" encoding="utf-8"?> 2 3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:orientation="vertical" android:layout_width="match_parent" 5 android:layout_height="match_parent"> 6 7 <LinearLayout android:orientation="horizontal" 8 android:layout_width="match_parent" 9 android:layout_height="wrap_content"> 10 11 <TextView android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:text="@string/title" /> 14 <EditText android:id="@+id/title" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:layout_weight="1"/> 18 </LinearLayout> 19 20 <TextView android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:text="@string/body" /> 23 <EditText android:id="@+id/body" android:layout_width="match_parent" 24 android:layout_height="wrap_content" 25 android:layout_weight="1" 26 android:scrollbars="vertical" /> 27 28 <Button android:id="@+id/confirm" 29 android:text="@string/confirm" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" /> 32 33 </LinearLayout>