blob: 773177c5d03478f267cbbcd75de2481068135ac7 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/ll_loan_accounts"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/ll_customer_deposit_accounts"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_status_indicator"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/default_margin"
android:layout_marginTop="@dimen/default_margin"
android:layout_width="@dimen/side_bar_width"
app:srcCompat="@drawable/round_corner"/>
<LinearLayout
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_width="0dp"
android:orientation="vertical"
android:padding="@dimen/layout_padding_24dp">
<TextView
android:id="@+id/tv_loan_identifier"
style="@style/Base.TextAppearance.AppCompat.Medium"
android:layout_height="match_parent"
android:layout_width="match_parent"
tools:text="Loan Identifier"
android:textColor="@color/black"/>
<TextView
style="@style/Base.TextAppearance.AppCompat.Small"
android:ellipsize="end"
android:id="@+id/tv_modified_by"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:lines="1"
tools:text="Last modified by: rajan"/>
<TextView
style="@style/Base.TextAppearance.AppCompat.Small"
android:id="@+id/tv_modified_on"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
tools:text="Last modified on: 12 Aug 2017"/>
</LinearLayout>
<TextView
android:id="@+id/tv_account_balance"
android:layout_gravity="center"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/layout_padding_24dp"
android:layout_marginRight="@dimen/layout_padding_24dp"
android:layout_width="wrap_content"
android:textSize="@dimen/text_medium"
tools:text="Amount"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.2dp"
android:background="#E7DFDF"/>
</LinearLayout>