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:helperTextTextColor="?android:textColorSecondary">
13
14            <com.google.android.material.textfield.TextInputEditText
15                android:id="@+id/textinput"
16                android:layout_width="match_parent"
17                android:layout_height="wrap_content"
18                android:ems="10"
19                android:imeOptions="actionNext"
20                android:inputType="textWebEditText"
21                android:minLines="1" />
22
23        </com.google.android.material.textfield.TextInputLayout>
24
25</layout>