blob: 452a0cb474757adf1d3bd8b29a9c36092f2ad25b [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/ll_loan_accounts"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:orientation="vertical">
<LinearLayout
android:id="@+id/ll_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_type_indicator"
android:layout_width="@dimen/side_bar_width"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/default_margin"
android:layout_marginTop="@dimen/default_margin"
app:srcCompat="@drawable/round_corner" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical"
android:padding="@dimen/layout_padding_24dp">
<TextView
android:id="@+id/tv_account_identifier"
style="@style/Base.TextAppearance.AppCompat.Medium"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@color/black"
tools:text="Account Identifier" />
<TextView
android:id="@+id/tv_modified_by"
style="@style/Base.TextAppearance.AppCompat.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:lines="1"
tools:text="Last modified by: rajan" />
<TextView
android:id="@+id/tv_modified_on"
style="@style/Base.TextAppearance.AppCompat.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Last modified on: 10 July 2018" />
</LinearLayout>
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginEnd="@dimen/layout_padding_24dp"
android:layout_marginRight="@dimen/layout_padding_24dp"
android:textSize="@dimen/text_medium"
tools:text="Total Value" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.2dp"
android:background="#E7DFDF" />
</LinearLayout>