30 lines
987 B
XML
30 lines
987 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<ImageView
|
||
|
id="@+id/expand_icon_image_view"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
src="@drawable/ic_expand_more_black_24dp"
|
||
|
layout_alignParentRight="true"
|
||
|
layout_centerInParent="true"
|
||
|
contentDescription="@null"
|
||
|
layout_marginEnd="8dp"
|
||
|
layout_alignParentEnd="true"/>
|
||
|
<View
|
||
|
id="@+id/expanded_line_view"
|
||
|
background="#c9c6cd"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="1dp"
|
||
|
layout_alignParentBottom="true"/>
|
||
|
<ImageView
|
||
|
id="@+id/expanded_diamond_image_view"
|
||
|
visibility="gone"
|
||
|
layout_width="16dp"
|
||
|
layout_height="16dp"
|
||
|
src="@drawable/shape_txn_item_diamond"
|
||
|
layout_alignParentBottom="true"
|
||
|
contentDescription="@null"
|
||
|
layout_marginStart="16.5dp"/>
|
||
|
</merge>
|