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:suffixTextAppearance="@style/Widget.Conversations.EditText"
13            app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
14            app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint"
15            app:helperTextTextAppearance="@style/TextAppearance.Conversations.Status"
16            app:helperTextTextColor="?android:textColorSecondary">
17
18            <com.google.android.material.textfield.TextInputEditText
19                android:id="@+id/textinput"
20                style="@style/Widget.Conversations.EditText"
21                android:layout_width="match_parent"
22                android:layout_height="wrap_content"
23                android:ems="10"
24                android:imeOptions="actionNext"
25                android:inputType="textWebEditText"
26                android:minLines="1" />
27
28        </com.google.android.material.textfield.TextInputLayout>
29
30</layout>