AIRA-android/app/src/main/res/layout/dialog_edit_text.xml

15 lines
519 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="30dp"
android:autofillHints="name"
android:hint="@string/name"
android:inputType="textPersonName"/>
</RelativeLayout>