habitica-android/Habitica/res/layout/dialog_purchase_shopitem_button.xml

28 lines
1.1 KiB
XML
Raw Normal View History

2019-05-22 13:09:09 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/buyButton"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:gravity="center"
2020-09-04 16:17:34 +00:00
android:background="@drawable/layout_rounded_bg_window"
2019-05-22 13:09:09 +00:00
android:paddingLeft="16dp"
android:paddingRight="16dp">
<TextView
android:id="@+id/buy_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-08-24 11:00:20 +00:00
android:text="@string/reward_dialog_buy"
2019-05-22 13:09:09 +00:00
android:textColor="@color/brand_300"
style="@style/Subheader1" />
<com.habitrpg.android.habitica.ui.views.CurrencyView
android:id="@+id/priceLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="10"
tools:textColor="@color/green_10"
style="@style/Subheader1"
android:layout_marginStart="12dp"/>
</LinearLayout>