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:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="?attr/colorContentBackground">
|
2019-05-22 13:09:09 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-05 15:31:20 +00:00
|
|
|
android:paddingLeft="12dp"
|
|
|
|
|
android:paddingRight="12dp"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:background="@color/window_background"
|
|
|
|
|
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"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginEnd="6dp"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/pin_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="16sp"/>
|
|
|
|
|
</LinearLayout>
|
2019-05-22 13:09:09 +00:00
|
|
|
<androidx.legacy.widget.Space
|
|
|
|
|
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"
|
|
|
|
|
android:padding="7dp"
|
|
|
|
|
android:background="@color/brand_300"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
tools:text="Available until May 6"/>
|
|
|
|
|
</LinearLayout>
|