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"
2022-06-30 10:14:31 +00:00
style="@style/SubHeader1" />
2022-06-30 10:53:54 +00:00
<com.habitrpg.android.habitica.ui.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"
2022-06-30 10:14:31 +00:00
style="@style/SubHeader1"
2019-05-22 13:09:09 +00:00
android:layout_marginStart="12dp"/>
</LinearLayout>