2015-08-30 17:56:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-12 23:35:47 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-08-30 17:56:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="7dp"
|
|
|
|
|
android:text="Chat"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
|
android:textColor="@color/material_drawer_primary_text" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2015-12-12 23:35:47 +00:00
|
|
|
android:orientation="horizontal"
|
2015-08-30 17:56:46 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2015-12-12 23:35:47 +00:00
|
|
|
<android.support.design.widget.TextInputLayout
|
2015-12-13 19:11:10 +00:00
|
|
|
android:layout_width="0dp"
|
2015-12-12 23:35:47 +00:00
|
|
|
android:layout_height="72dp"
|
2015-12-13 19:11:10 +00:00
|
|
|
android:layout_weight="1"
|
2015-12-12 23:35:47 +00:00
|
|
|
app:hintTextAppearance="@style/TextAppearance.AppCompat">
|
2015-08-30 17:56:46 +00:00
|
|
|
|
2015-12-12 23:35:47 +00:00
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/edit.new.message.text"
|
2015-12-13 19:11:10 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-12-12 23:35:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:hint="Write Message"
|
|
|
|
|
android:textColor="@android:color/black"
|
2015-12-13 19:11:10 +00:00
|
|
|
/>
|
2015-12-12 23:35:47 +00:00
|
|
|
|
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
2015-08-30 17:56:46 +00:00
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn.send.message"
|
|
|
|
|
android:layout_width="50dp"
|
2015-10-29 18:53:37 +00:00
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:drawableTint="@color/white"/>
|
2015-08-30 17:56:46 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|