22 lines
662 B
XML
22 lines
662 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
id="@+id/container"
|
||
|
background="@drawable/bg_button_amount_purple"
|
||
|
focusable="true"
|
||
|
clickable="true"
|
||
|
layout_width="64dp"
|
||
|
layout_height="32dp"
|
||
|
layout_marginTop="16dp"
|
||
|
layout_marginBottom="16dp"
|
||
|
layout_marginStart="16dp"
|
||
|
layout_marginEnd="8dp">
|
||
|
<TextView
|
||
|
textSize="22sp"
|
||
|
textColor="#ffffff"
|
||
|
id="@+id/tv_month_text"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
layout_centerInParent="true"
|
||
|
layout_centerVertical="true"/>
|
||
|
</RelativeLayout>
|