1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 xmlns:card_view="http://schemas.android.com/apk/res-auto" 4 android:padding="10dip" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:orientation="vertical" > 8 9 <TextView 10 android:layout_width="match_parent" 11 android:layout_height="wrap_content" 12 android:text="@string/process_text_received_text_title" 13 android:textAppearance="@android:style/TextAppearance.Material.Title" /> 14 15 <EditText 16 android:id="@+id/process_text_received_text_editable" 17 android:layout_width="match_parent" 18 android:layout_height="wrap_content" /> 19 20 <Button 21 android:id="@+id/process_text_finish_button" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:text="@string/process_text_finish" /> 25 26</LinearLayout> 27