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"
|
2016-03-06 15:49:35 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-08-30 17:56:46 +00:00
|
|
|
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">
|
|
|
|
|
|
2016-01-11 16:09:49 +00:00
|
|
|
<ImageButton
|
|
|
|
|
android:id="@+id/emoji.toggle.btn"
|
|
|
|
|
android:layout_width="50dp"
|
|
|
|
|
android:layout_height="50dp"
|
2016-01-11 16:54:21 +00:00
|
|
|
android:src="@drawable/ic_emoticon_grey600_24dp"
|
2016-01-11 16:09:49 +00:00
|
|
|
android:scaleType="center"
|
|
|
|
|
android:backgroundTint="@color/transparent"
|
|
|
|
|
android:contentDescription="Toogle Emojis" />
|
|
|
|
|
|
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"
|
2016-01-06 17:38:54 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="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-26 15:21:21 +00:00
|
|
|
<com.github.data5tream.emojilib.EmojiEditText
|
2015-12-12 23:35:47 +00:00
|
|
|
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"
|
2016-01-11 16:09:49 +00:00
|
|
|
android:textColor="@android:color/black" />
|
2016-01-27 18:59:29 +00:00
|
|
|
android:inputType="textCapSentences" />
|
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>
|
|
|
|
|
|
2016-02-26 13:02:15 +00:00
|
|
|
</LinearLayout>
|