document.write('
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.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:orientation="vertical">
  6.  
  7.     <ImageView
  8.        android:src="@mipmap/ic_launcher"
  9.        android:layout_alignParentBottom="true"
  10.        android:layout_alignParentLeft="true"
  11.        android:id="@+id/iv_profpic"
  12.        android:layout_width="wrap_content"
  13.        android:layout_height="wrap_content" />
  14.  
  15.     <EditText
  16.        android:id="@+id/et_chat"
  17.        android:layout_width="match_parent"
  18.        android:layout_height="wrap_content"
  19.        android:layout_alignParentBottom="true"
  20.        android:layout_toRightOf="@id/iv_profpic"
  21.        android:hint="Masukkan pesan ..." />
  22.  
  23.     <Button
  24.        android:id="@+id/bt_submit"
  25.        android:layout_width="wrap_content"
  26.        android:layout_height="wrap_content"
  27.        android:layout_alignParentBottom="true"
  28.        android:layout_alignParentRight="true"
  29.        android:layout_alignRight="@id/et_chat"
  30.        android:text="Submit" />
  31.  
  32.     <TextView
  33.        android:id="@+id/tv_chat2"
  34.        android:layout_width="wrap_content"
  35.        android:layout_height="wrap_content"
  36.        android:layout_above="@id/bt_submit"
  37.        android:layout_alignParentRight="true"
  38.        android:layout_margin="10dp"
  39.        android:background="@color/colorPrimary"
  40.        android:padding="10dp"
  41.        android:text="Hei juga, kabar baik !" />
  42.  
  43.     <TextView
  44.        android:id="@+id/tv_chat"
  45.        android:layout_width="wrap_content"
  46.        android:layout_height="wrap_content"
  47.        android:layout_above="@id/tv_chat2"
  48.        android:layout_margin="10dp"
  49.        android:background="@color/colorAccent"
  50.        android:padding="10dp"
  51.        android:text="Haloo, apa kabar?" />
  52.  
  53. </RelativeLayout>
');