command_text_field.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android"
 3    xmlns:app="http://schemas.android.com/apk/res-auto">
 4
 5        <com.google.android.material.textfield.TextInputLayout
 6            android:id="@+id/textinput_layout"
 7            android:layout_width="match_parent"
 8            android:layout_height="wrap_content"
 9            android:paddingLeft="8dp"
10            android:paddingRight="8dp"
11            android:paddingBottom="16dp"
12            app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
13            app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint"
14            app:helperTextTextAppearance="@style/TextAppearance.Conversations.Status"
15            app:helperTextTextColor="?android:textColorSecondary">
16
17            <com.google.android.material.textfield.TextInputEditText
18                android:id="@+id/textinput"
19                style="@style/Widget.Conversations.EditText"
20                android:layout_width="match_parent"
21                android:layout_height="wrap_content"
22                android:ems="10"
23                android:imeOptions="actionNext"
24                android:inputType="textWebEditText"
25                android:minLines="1" />
26
27        </com.google.android.material.textfield.TextInputLayout>
28
29</layout>