52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
orientation="vertical"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<RelativeLayout
|
|
orientation="horizontal"
|
|
padding="16dp"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<TextView
|
|
id="@+id/schedule_name"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
maxLines="2"
|
|
style="@style/2132017876"/>
|
|
<TextView
|
|
id="@+id/schedule_amount_label"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
layout_marginTop="5dp"
|
|
text="@string/schedule_amount"
|
|
layout_below="@+id/schedule_name"
|
|
style="@style/2132017868"/>
|
|
<TextView
|
|
id="@+id/schedule_amount"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
maxLines="1"
|
|
layout_below="@+id/schedule_name"
|
|
layout_marginEnd="24dp"
|
|
layout_toStartOf="@+id/iv_next_arrow"
|
|
style="@style/2132017881"/>
|
|
<ImageView
|
|
id="@+id/iv_next_arrow"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
src="@drawable/ic_right_accent"
|
|
tint="#353239"
|
|
baselineAlignBottom="true"
|
|
layout_below="@+id/schedule_name"
|
|
layout_alignBottom="@+id/schedule_amount"
|
|
layout_alignParentRight="true"
|
|
layout_alignParentEnd="true"/>
|
|
</RelativeLayout>
|
|
<View
|
|
id="@+id/divider"
|
|
background="#c9c6cd"
|
|
layout_width="match_parent"
|
|
layout_height="1dp"/>
|
|
</LinearLayout>
|