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:orientation="vertical" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" > 8 9 <TextView 10 android:layout_width="match_parent" 11 android:layout_height="wrap_content" 12 android:text="@string/process_text_send_title" 13 android:textAppearance="@android:style/TextAppearance.Material.Title" /> 14 15 <EditText 16 android:id="@+id/process_text_send_edit" 17 android:layout_width="match_parent" 18 android:layout_height="wrap_content" 19 android:text="@string/process_text_send_description" /> 20 21</LinearLayout> 22