22 lines
901 B
XML
22 lines
901 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/vs"
|
|
android:paddingLeft="@dimen/sz"
|
|
android:paddingTop="@dimen/ts"
|
|
android:paddingRight="@dimen/sz"
|
|
android:paddingBottom="16dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/w3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/uv"
|
|
android:inputType="date"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</FrameLayout>
|