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:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2022-12-19 13:40:02 +00:00
|
|
|
android:layout_height="match_parent">
|
2019-05-22 13:09:09 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
|
android:paddingEnd="12dp"
|
2022-11-22 14:48:15 +00:00
|
|
|
android:background="?attr/colorWindowBackground"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<LinearLayout
|
2019-05-22 13:09:09 +00:00
|
|
|
android:id="@+id/pin_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="52dp"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
|
android:paddingEnd="8dp">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/pin_icon"
|
2022-06-15 16:22:54 +00:00
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:layout_marginEnd="6dp"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/pin_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="16sp"/>
|
|
|
|
|
</LinearLayout>
|
2022-07-27 15:05:22 +00:00
|
|
|
<Space
|
2019-05-22 13:09:09 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyViews
|
|
|
|
|
android:id="@+id/currencyView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingTop="12dp"
|
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/limitedTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textSize="12sp"
|
2021-05-25 08:23:08 +00:00
|
|
|
android:paddingVertical="7dp"
|
|
|
|
|
android:paddingHorizontal="16dp"
|
2019-05-22 13:09:09 +00:00
|
|
|
android:background="@color/brand_300"
|
|
|
|
|
android:textColor="@color/white"
|
2021-05-25 08:23:08 +00:00
|
|
|
android:visibility="gone"
|
2019-05-22 13:09:09 +00:00
|
|
|
tools:text="Available until May 6"/>
|
|
|
|
|
</LinearLayout>
|