blob: 9a73093831a7e50343f04a027e50906f4c6cd47b [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/default_margin">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/default_margin"
android:layout_marginBottom="@dimen/default_margin">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="@dimen/default_padding">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilIdentifier"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etIdentifier"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/identifier"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilGroupDefinitionIdentifier"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etGroupDefinitionIdentifier"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/group_definition_identifier"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilName"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilOffice"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etOffice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/office"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tilAssignedEmployee"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/etAssignedEmployee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/assigned_employee"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>