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

27 lines
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"
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"
2020-09-17 11:47:02 +00:00
android:paddingStart="16dp"
android:paddingEnd="16dp">
2019-05-22 13:09:09 +00:00
<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" />
2022-05-17 13:39:22 +00:00
<com.habitrpg.common.habitica.views.CurrencyView
2019-05-22 13:09:09 +00:00
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>