Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:background="#BAECBD">
  8.  
  9.     <EditText
  10.        android:id="@+id/name"
  11.        android:layout_width="200dp"
  12.        android:layout_height="wrap_content"
  13.        android:background="#F8EFF8F3"
  14.        android:hint="Nama"
  15.        android:padding="16dp" />
  16.     <EditText
  17.        android:id="@+id/email"
  18.        android:layout_width="210dp"
  19.        android:layout_height="wrap_content"
  20.        android:layout_marginLeft="5dp"
  21.        android:layout_toRightOf="@+id/name"
  22.        android:background="#F8EFF8F3"
  23.        android:hint="Alamat Email"
  24.        android:padding="16dp" />
  25.     <EditText
  26.        android:id="@+id/subject"
  27.        android:layout_width="match_parent"
  28.        android:layout_height="wrap_content"
  29.        android:layout_marginTop="16dp"
  30.        android:layout_below="@+id/name"
  31.        android:background="#F8EFF8F3"
  32.        android:gravity="top"
  33.        android:hint="Subjek"
  34.        android:padding="16dp" />
  35.     <EditText
  36.        android:id="@+id/message"
  37.        android:layout_width="match_parent"
  38.        android:layout_height="200dp"
  39.        android:layout_marginTop="16dp"
  40.        android:layout_below="@+id/subject"
  41.        android:background="#F8EFF8F3"
  42.        android:gravity="top"
  43.        android:hint="Pesan"
  44.        android:padding="16dp" />
  45.     <EditText
  46.        android:id="@+id/submit"
  47.        android:layout_width="wrap_content"
  48.        android:layout_height="wrap_content"
  49.        android:layout_marginTop="16dp"
  50.        android:layout_below="@+id/message"
  51.        android:layout_centerHorizontal="true"
  52.        android:background="#F8EFF8F3"
  53.        android:text="KIRIM"
  54.        android:padding="16dp" />
  55. </RelativeLayout>