42 lines
1.8 KiB
XML
42 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="@dimen/sz"
|
|
android:paddingTop="16dp"
|
|
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/w5"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/ux"
|
|
android:inputType="date"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
<Space
|
|
android:layout_width="8dp"
|
|
android:layout_height="0dp"/>
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/w4"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/uw"
|
|
android:inputType="date"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|