blob: 6a901fc96fbda2609d74d7be94f6e6d7bc5ec486 [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:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<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_customer_details"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="visible"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/white"
android:id="@+id/cv_financial_products"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginTop="@dimen/layout_padding_8dp"
android:layout_marginBottom="@dimen/layout_padding_8dp"
android:visibility="visible"
app:cardBackgroundColor="@color/white">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<RelativeLayout
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:id="@+id/ll_loan_accounts"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal"
android:padding="@dimen/layout_padding_4dp">
<TextView
style="@style/Base.TextAppearance.AppCompat.Small"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/layout_padding_16dp"
android:layout_marginStart="@dimen/layout_padding_16dp"
android:layout_marginTop="@dimen/layout_padding_16dp"
android:layout_width="wrap_content"
android:text="Documents(Total: 0)"/>
<Button
android:layout_alignParentRight="true"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="Add Document"
android:textAllCaps="false"
android:textSize="12sp"/>
</RelativeLayout>
<View
android:background="@color/collapse_image"
android:layout_height="1dp"
android:layout_width="wrap_content"/>
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<TextView
android:layout_gravity="center"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:padding="@dimen/layout_padding_24dp"
android:text="No documents to show. add documents"
android:textSize="@dimen/text_small"
android:visibility="visible"/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_customers"
android:layout_height="0dp"
android:layout_marginBottom="@dimen/layout_padding_30dp"
android:layout_weight="1"
android:layout_width="match_parent"
android:visibility="gone"/>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>