blob: 0b8a3deb94ed06d6f7fa77c9c16a29524c1b9356 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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_deposit_assign_product"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="gone"
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="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"/>
<androidx.appcompat.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"/>
<androidx.recyclerview.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">
<com.google.android.material.textfield.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"/>
</com.google.android.material.textfield.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>
</androidx.cardview.widget.CardView>
</androidx.core.widget.NestedScrollView>
<include
layout="@layout/layout_exception_handler"
android:id="@+id/layout_error"
android:visibility="gone"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>