129 lines
5.2 KiB
XML
129 lines
5.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
clickable="true"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
foreground="@drawable/ripple_rounded_4_purple">
|
||
|
<LinearLayout
|
||
|
orientation="vertical"
|
||
|
background="@drawable/bg_white_rounded"
|
||
|
paddingTop="12dp"
|
||
|
paddingBottom="16dp"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_margin="5dp"
|
||
|
paddingStart="16dp"
|
||
|
paddingEnd="16dp"
|
||
|
elevation="2dp">
|
||
|
<LinearLayout
|
||
|
orientation="horizontal"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<ImageView
|
||
|
id="@+id/custom_loan_type"
|
||
|
layout_width="20dp"
|
||
|
layout_height="12dp"
|
||
|
layout_marginTop="6dp"
|
||
|
src="@drawable/ic_mortgage_loan"
|
||
|
scaleType="centerInside"
|
||
|
layout_marginEnd="8dp"/>
|
||
|
<LinearLayout
|
||
|
orientation="vertical"
|
||
|
layout_width="0dp"
|
||
|
layout_height="wrap_content"
|
||
|
layout_weight="1">
|
||
|
<TextView
|
||
|
gravity="start"
|
||
|
id="@+id/loan_name_text_view"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
text="AAAAA sdfsdfsdfsd fasdfds fsd fsd fsdfds"
|
||
|
style="@style/2132017925"/>
|
||
|
<TextView
|
||
|
gravity="start|top"
|
||
|
id="@+id/loan_detail_account_number"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
text="AAAAA sdfsdfsdfsd"
|
||
|
style="@style/2132017923"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
<RelativeLayout
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<LinearLayout
|
||
|
orientation="vertical"
|
||
|
id="@+id/linear_loan_outstanding"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<TextView
|
||
|
gravity="end"
|
||
|
id="@+id/tv_loan_outstanding"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/loan_amount_label"
|
||
|
style="@style/2132017918"/>
|
||
|
<TextView
|
||
|
gravity="end"
|
||
|
id="@+id/loan_outstanding_amount_text_view"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
style="@style/2132017888"/>
|
||
|
</LinearLayout>
|
||
|
<RelativeLayout
|
||
|
id="@+id/relative_loan_restricted"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_alignTop="@+id/linear_loan_outstanding"
|
||
|
layout_alignBottom="@+id/linear_loan_outstanding">
|
||
|
<TextView
|
||
|
id="@+id/loan_restricted"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/account_summary_loan_restricted_title"
|
||
|
layout_alignParentRight="true"
|
||
|
layout_centerVertical="true"
|
||
|
style="@style/2132017999"/>
|
||
|
<ImageView
|
||
|
id="@+id/restricted_image_view"
|
||
|
layout_width="28dp"
|
||
|
layout_height="28dp"
|
||
|
src="@drawable/ic_loan_alert"
|
||
|
layout_centerVertical="true"
|
||
|
layout_marginEnd="14dp"
|
||
|
layout_toStartOf="@+id/loan_restricted"/>
|
||
|
</RelativeLayout>
|
||
|
<RelativeLayout
|
||
|
id="@+id/rl_layout_level_up_loan_closed"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginTop="16dp"
|
||
|
layout_alignTop="@+id/linear_loan_outstanding"
|
||
|
layout_alignBottom="@+id/linear_loan_outstanding">
|
||
|
<LinearLayout
|
||
|
gravity="center_vertical"
|
||
|
orientation="horizontal"
|
||
|
id="@+id/ll_level_up_loan_closed"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
layout_alignParentEnd="true">
|
||
|
<ImageView
|
||
|
id="@+id/iv_level_up_loan_closed"
|
||
|
layout_width="32dp"
|
||
|
layout_height="32dp"
|
||
|
src="@drawable/ic_loan_alert"
|
||
|
layout_marginEnd="8dp"/>
|
||
|
<TextView
|
||
|
id="@+id/tv_level_up_loan_closed"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/account_summary_loan_restricted_title"
|
||
|
style="@style/2132018000"/>
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|
||
|
</RelativeLayout>
|
||
|
</LinearLayout>
|
||
|
</FrameLayout>
|