Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    android:id="@+id/linearLayout1"
  3.    android:layout_width="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical"
  6.    android:padding="5dp" >
  7.  
  8.     <TextView
  9.        android:layout_width="wrap_content"
  10.        android:layout_height="wrap_content"
  11.        android:text="To:"
  12.        android:textAppearance="?android:attr/textAppearanceLarge" />
  13.  
  14.     <EditText
  15.        android:id="@+id/toEmail"
  16.        android:layout_width="fill_parent"
  17.        android:layout_height="wrap_content"
  18.        android:hint="Enter email" >
  19.     </EditText>
  20.  
  21.     <TextView
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        android:text="Subject:"
  25.        android:textAppearance="?android:attr/textAppearanceLarge" />
  26.  
  27.     <EditText
  28.        android:id="@+id/subject"
  29.        android:layout_width="fill_parent"
  30.        android:layout_height="wrap_content"
  31.        android:hint="Enter Subject" >
  32.     </EditText>
  33.  
  34.     <TextView
  35.        android:layout_width="wrap_content"
  36.        android:layout_height="wrap_content"
  37.        android:text="Message:"
  38.        android:textAppearance="?android:attr/textAppearanceLarge" />
  39.  
  40.     <EditText
  41.        android:id="@+id/emailBody"
  42.        android:layout_width="fill_parent"
  43.        android:layout_height="wrap_content"
  44.        android:gravity="top"
  45.        android:hint="Enter mail body"
  46.        android:inputType="textMultiLine"
  47.        android:lines="5" />
  48.  
  49. </LinearLayout>