2017-07-25 16:27:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-06-11 15:07:46 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-07-25 16:27:00 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="@dimen/shopitem_dialog_content_inset"
|
|
|
|
|
android:paddingEnd="@dimen/shopitem_dialog_content_inset"
|
2017-07-25 16:27:00 +00:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
tools:parentTag="LinearLayout"
|
|
|
|
|
tools:orientation="vertical">
|
|
|
|
|
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2017-07-25 16:27:00 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_image_size" />
|
|
|
|
|
<TextView
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/titleTextView"
|
2017-07-25 16:27:00 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Headline"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2017-07-25 16:27:00 +00:00
|
|
|
tools:text="This is the Title"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginTop="14dp"
|
|
|
|
|
android:layout_marginBottom="4dp"/>
|
|
|
|
|
<TextView
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/notesTextView"
|
2017-07-25 16:27:00 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body2"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2017-07-25 16:27:00 +00:00
|
|
|
tools:text="These are the notes"
|
|
|
|
|
android:gravity="center"/>
|
2020-06-11 15:07:46 +00:00
|
|
|
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.tasks.form.StepperValueFormView
|
|
|
|
|
android:id="@+id/stepper_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="56dp"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
|
|
|
app:defaultValue="1"
|
|
|
|
|
app:minValue="1" />
|
2020-04-09 12:25:54 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/amount_error_label"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:text="@string/purchase_amount_error"
|
|
|
|
|
android:textSize="12sp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2020-04-09 12:25:54 +00:00
|
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
2020-10-27 14:13:15 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/purchase_immediately_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingHorizontal="22dp"
|
|
|
|
|
android:paddingVertical="9dp"
|
|
|
|
|
android:text="@string/purchase_immediately_description"
|
|
|
|
|
android:textColor="@color/text_secondary"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Caption2"/>
|
2017-07-25 16:27:00 +00:00
|
|
|
</merge>
|