2016-08-06 14:32:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="7dp"
|
2016-08-09 20:29:05 +00:00
|
|
|
android:text="@string/chat"
|
2016-08-06 14:32:15 +00:00
|
|
|
android:id="@+id/new_message_title"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2017-11-17 19:09:36 +00:00
|
|
|
android:textColor="@color/gray_50" />
|
2016-08-06 14:32:15 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:orientation="horizontal"
|
2017-09-05 14:47:13 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:baselineAligned="false">
|
2016-08-06 14:32:15 +00:00
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2016-08-06 14:32:15 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="72dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
app:hintTextAppearance="@style/TextAppearance.AppCompat">
|
|
|
|
|
|
|
|
|
|
<net.pherth.android.emoji_library.EmojiEditText
|
|
|
|
|
android:id="@+id/edit.new.message.text"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:hint="@string/write_message"
|
|
|
|
|
android:textColor="@android:color/black"
|
|
|
|
|
android:inputType="textCapSentences|textMultiLine" />
|
|
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2016-08-06 14:32:15 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|