26 lines
837 B
XML
26 lines
837 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
id="@+id/amount_container_relative_layout"
|
|
background="@drawable/bg_button_amount"
|
|
clickable="true"
|
|
layout_width="64dp"
|
|
layout_height="32dp"
|
|
layout_marginTop="16dp"
|
|
layout_marginBottom="15dp"
|
|
layout_marginStart="5dp"
|
|
layout_marginEnd="5dp">
|
|
<TextView
|
|
textSize="22sp"
|
|
textColor="#7631c1"
|
|
id="@+id/amount_text_view"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
layout_centerInParent="true"
|
|
layout_centerVertical="true"/>
|
|
<View
|
|
background="@drawable/ripple_rounded_16_purple"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent"
|
|
layout_centerVertical="true"/>
|
|
</RelativeLayout>
|