<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:src="@mipmap/ic_launcher"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:id="@+id/iv_profpic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/et_chat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/iv_profpic"
android:hint="Masukkan pesan ..." />
<Button
android:id="@+id/bt_submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignRight="@id/et_chat"
android:text="Submit" />
<TextView
android:id="@+id/tv_chat2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/bt_submit"
android:layout_alignParentRight="true"
android:layout_margin="10dp"
android:background="@color/colorPrimary"
android:padding="10dp"
android:text="Hei juga, kabar baik !" />
<TextView
android:id="@+id/tv_chat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/tv_chat2"
android:layout_margin="10dp"
android:background="@color/colorAccent"
android:padding="10dp"
android:text="Haloo, apa kabar?" />
</RelativeLayout>