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    <LinearLayout
 6        android:layout_width="match_parent"
 7        android:layout_height="match_parent"
 8        android:orientation="vertical"
 9        android:padding="?dialogPreferredPadding">
10
11        <com.google.android.material.textfield.TextInputLayout
12            android:id="@+id/input_layout"
13            android:layout_width="match_parent"
14            android:layout_height="wrap_content"
15            app:errorEnabled="true">
16
17            <EditText
18                android:padding="16dp"
19                android:id="@+id/input_edit_text"
20                android:layout_width="match_parent"
21                android:layout_height="wrap_content"
22                android:ems="10"
23                android:inputType="textPersonName">
24
25                <requestFocus />
26            </EditText>
27
28        </com.google.android.material.textfield.TextInputLayout>
29    </LinearLayout>
30</layout>