habitica-android/Habitica/res/layout/profile_new_message_dialog.xml

43 lines
1.6 KiB
XML
Raw Normal View History

<?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"
android:text="@string/chat"
android:id="@+id/new_message_title"
android:textAppearance="?android:attr/textAppearanceLarge"
2020-09-04 16:17:34 +00:00
android:textColor="@color/text_primary" />
<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">
2018-11-06 15:11:02 +00:00
<com.google.android.material.textfield.TextInputLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:minHeight="72dp"
android:layout_weight="1"
2021-05-18 08:41:05 +00:00
android:hint="@string/write_message"
app:hintTextAppearance="@style/TextAppearance.AppCompat">
2020-09-22 14:10:15 +00:00
<androidx.appcompat.widget.AppCompatEditText
2019-11-05 14:19:44 +00:00
android:id="@+id/edit_new_message_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:inputType="textCapSentences|textMultiLine" />
2018-11-06 15:11:02 +00:00
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</LinearLayout>