blob: 361692a470df6ebb357a66bd2f62398c85f99692 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cl_loan_details"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="visible">
<androidx.core.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/gray_light"
android:id="@+id/ncv_loan_details"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="visible"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cv_financial_products"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/layout_padding_8dp"
android:layout_marginTop="@dimen/layout_padding_8dp"
android:layout_width="match_parent"
app:cardBackgroundColor="@color/white">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:padding="@dimen/layout_padding_16dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_email"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:paddingTop="@dimen/layout_padding_16dp"
app:errorEnabled="true">
<EditText
android:hint="@string/optional_email"
android:id="@+id/et_email"
android:inputType="textEmailAddress"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_phone"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<EditText
android:hint="@string/optional_phone"
android:id="@+id/et_phone_number"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_mobile"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<EditText
android:hint="@string/optional_mobile"
android:id="@+id/et_mobile"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>