65 lines
2.3 KiB
XML
65 lines
2.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent">
|
||
|
<RelativeLayout
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
id="@+id/rv_transaction_list"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_above="@+id/ll_bt_next"
|
||
|
layout_alignParentTop="true"/>
|
||
|
<LinearLayout
|
||
|
id="@+id/ll_bt_next"
|
||
|
background="#ffffff"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_alignParentBottom="true">
|
||
|
<Button
|
||
|
id="@+id/bt_next"
|
||
|
layout_width="match_parent"
|
||
|
layout_marginTop="16dp"
|
||
|
layout_marginBottom="16dp"
|
||
|
text="@string/next_button"
|
||
|
textAllCaps="false"
|
||
|
layout_marginStart="16dp"
|
||
|
layout_marginEnd="16dp"
|
||
|
style="@style/2132017576"/>
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|
||
|
<LinearLayout
|
||
|
orientation="vertical"
|
||
|
id="@+id/ll_status"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<ImageView
|
||
|
gravity="center"
|
||
|
layout_gravity="center_horizontal"
|
||
|
id="@+id/iv_status_icon"
|
||
|
layout_width="120dp"
|
||
|
layout_height="120dp"
|
||
|
layout_marginTop="32dp"
|
||
|
src="@drawable/box_empty"
|
||
|
scaleType="fitXY"/>
|
||
|
<TextView
|
||
|
gravity="center"
|
||
|
id="@+id/tv_title_status"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginTop="16dp"
|
||
|
text="@string/auto_p2p_select_purchase_no_eligible_title"
|
||
|
style="@style/2132017875"/>
|
||
|
<TextView
|
||
|
gravity="center"
|
||
|
id="@+id/tv_subtitle_status"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_margin="8dp"
|
||
|
text="@string/auto_p2p_select_purchase_no_eligible_description"
|
||
|
style="@style/2132017846"/>
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|