Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:paddingLeft="16dp"
  6.     android:paddingRight="16dp"
  7.     android:orientation="vertical" >
  8.  
  9.     <EditText
  10.         android:layout_width="match_parent"
  11.         android:layout_height="wrap_content"
  12.         android:hint="to" />
  13.     <EditText
  14.         android:layout_width="match_parent"
  15.         android:layout_height="wrap_content"
  16.         android:hint="subject" />
  17.     <EditText
  18.         android:layout_width="match_parent"
  19.         android:layout_height="0dp"
  20.         android:layout_weight="1"
  21.         android:gravity="top"
  22.         android:hint="message" />
  23.     <Button
  24.         android:layout_width="100dp"
  25.         android:layout_height="wrap_content"
  26.         android:layout_gravity="right"
  27.         android:text="send" />
  28. </LinearLayout>