blob: 80e6a48712904f9901c31c21ea9b4b77457fed80 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.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">
<android.support.v4.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">
<android.support.v7.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">
<android.support.design.widget.TextInputLayout
android:id="@+id/til_street"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:paddingTop="@dimen/layout_padding_16dp"
app:errorEnabled="true">
<EditText
android:hint="@string/required_street"
android:id="@+id/et_street"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/til_city"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<EditText
android:hint="@string/required_city"
android:id="@+id/et_city"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:digits="@string/restrict_a_zA_Z"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/til_postal_code"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<EditText
android:hint="@string/optional_postal_code"
android:id="@+id/et_postal_code"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/til_country"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<AutoCompleteTextView
android:hint="@string/required_country"
android:id="@+id/et_country"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:digits="@string/restrict_a_zA_Z"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/til_region"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:errorEnabled="true">
<EditText
android:hint="@string/optional_region"
android:id="@+id/et_region"
android:inputType="text"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:digits="@string/restrict_a_zA_Z"/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>