blob: 1eebcb88cb480a9cc1764793b644a5ef9da95781 [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_deposit_assign_product"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="invisible">
<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="match_parent"
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"
android:padding="@dimen/layout_padding_16dp">
<TextView
android:id="@+id/tv_select_product_header"
style="@style/Base.TextAppearance.AppCompat.Small"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/layout_padding_4dp"
android:layout_marginStart="@dimen/layout_padding_4dp"
android:layout_width="match_parent"
android:text="@string/select_product"/>
<android.support.v7.widget.AppCompatSpinner
style="@style/Widget.AppCompat.Spinner.Underlined"
android:entries="@array/loan_application_steps"
android:id="@+id/sp_products"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_beneficiary"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_marginTop="@dimen/layout_padding_16dp"/>
<RelativeLayout
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.design.widget.TextInputLayout
android:id="@+id/til_search_beneficiary"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/layout_padding_16dp"
android:layout_width="match_parent"
android:paddingBottom="@dimen/layout_padding_16dp">
<org.apache.fineract.ui.views.DelayAutoCompleteTextView
android:hint="@string/search_beneficiary"
android:id="@+id/et_search_beneficiary"
android:inputType="textCapSentences"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:imeOptions="flagNoExtractUi|actionSearch"/>
</android.support.design.widget.TextInputLayout>
<ProgressBar
android:id="@+id/pb_search_beneficiary"
style="?android:attr/progressBarStyleSmall"
android:layout_alignBottom="@+id/til_search_beneficiary"
android:layout_alignEnd="@+id/til_search_beneficiary"
android:layout_alignRight="@+id/til_search_beneficiary"
android:layout_alignTop="@+id/til_search_beneficiary"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:visibility="gone"/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="300dp" />
</LinearLayout>
</android.support.v7.widget.CardView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>