26 lines
854 B
XML
26 lines
854 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<ImageView
|
||
|
id="@+id/iv_gift_icon"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
src="@drawable/ic_gift_transfer"
|
||
|
layout_centerVertical="true"/>
|
||
|
<TextView
|
||
|
id="@+id/tv_gift"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginStart="8dp"
|
||
|
layout_toEndOf="@+id/iv_gift_icon"
|
||
|
style="@style/2132017876"/>
|
||
|
<ImageView
|
||
|
id="@+id/iv_next_arrow"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
src="@drawable/black_arrow"
|
||
|
layout_centerVertical="true"
|
||
|
layout_alignParentEnd="true"/>
|
||
|
</RelativeLayout>
|