22 lines
743 B
XML
22 lines
743 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:viewBindingIgnore="true">
|
|
<EditText
|
|
android:id="@android:id/edit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:hint="@null"
|
|
android:inputType="number"
|
|
android:imeOptions="flagNoExtractUi"
|
|
android:importantForAutofill="no"
|
|
tools:text="12345678">
|
|
<requestFocus/>
|
|
</EditText>
|
|
</FrameLayout>
|