2016-01-13 16:25:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-20 16:37:29 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-01-19 18:43:24 +00:00
|
|
|
android:layout_height="65dp"
|
2020-03-20 16:37:29 +00:00
|
|
|
android:paddingTop="16dp"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:gravity="bottom">
|
2016-01-13 16:25:08 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/label"
|
2016-01-16 17:05:14 +00:00
|
|
|
android:layout_width="0dp"
|
2016-01-13 16:25:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-01-16 17:05:14 +00:00
|
|
|
android:layout_weight="1"
|
2020-07-23 13:40:51 +00:00
|
|
|
tools:text="Test header"
|
|
|
|
|
style="@style/Overline"
|
2020-03-20 16:37:29 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
2020-07-23 13:40:51 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/count_pill"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
style="@style/Pill"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:textAllCaps="true"
|
|
|
|
|
android:letterSpacing="0.15"
|
|
|
|
|
/>
|
2020-03-20 16:37:29 +00:00
|
|
|
<LinearLayout
|
2016-01-16 17:05:14 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-03-20 16:37:29 +00:00
|
|
|
android:layout_height="40dp"
|
2016-02-02 13:59:28 +00:00
|
|
|
android:id="@+id/purchaseSetButton"
|
2020-03-20 16:37:29 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:paddingStart="@dimen/spacing_medium"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_medium"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_gray_700">
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/buy_all"
|
|
|
|
|
android:textAllCaps="true"
|
|
|
|
|
android:textColor="@color/brand_300"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:layout_marginEnd="@dimen/spacing_medium"/>
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
|
|
|
|
android:id="@+id/set_price_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
</LinearLayout>
|
2016-01-13 16:25:08 +00:00
|
|
|
</LinearLayout>
|