2016-07-22 16:07:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-08-22 19:13:29 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-08-28 10:06:20 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true">
|
2016-07-22 16:07:00 +00:00
|
|
|
<LinearLayout
|
2017-08-22 19:13:29 +00:00
|
|
|
android:id="@+id/container"
|
2017-07-20 17:59:59 +00:00
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
2017-09-27 12:54:50 +00:00
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="112dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:orientation="vertical"
|
2017-08-22 19:13:29 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem"
|
|
|
|
|
android:layout_centerInParent="true">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2017-07-20 12:19:10 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_image_size"
|
2017-09-27 12:54:50 +00:00
|
|
|
android:layout_margin="6dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/buyButton"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-01-31 13:15:16 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="40dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price">
|
2022-06-30 10:53:54 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
2017-07-20 12:19:10 +00:00
|
|
|
android:id="@+id/priceLabel"
|
|
|
|
|
android:layout_width="wrap_content"
|
2016-07-22 16:07:00 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_quad"
|
2017-07-20 12:19:10 +00:00
|
|
|
tools:text="150"
|
2017-07-20 17:59:59 +00:00
|
|
|
style="@style/Body1"
|
2017-08-22 19:13:29 +00:00
|
|
|
android:textSize="15sp" />
|
2017-11-08 17:29:11 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/unlockLabel"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-04 11:39:36 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_gravity="center"
|
2017-11-08 17:29:11 +00:00
|
|
|
style="@style/Body1"
|
2020-01-31 13:15:16 +00:00
|
|
|
android:textSize="11sp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_quad"
|
2020-02-04 11:39:36 +00:00
|
|
|
android:paddingStart="2dp"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:paddingEnd="2dp"
|
2025-05-31 14:21:03 +00:00
|
|
|
android:accessibilityTraversalAfter="@id/container"
|
2017-11-08 17:29:11 +00:00
|
|
|
/>
|
2017-07-20 17:59:59 +00:00
|
|
|
</LinearLayout>
|
2016-07-22 16:07:00 +00:00
|
|
|
</LinearLayout>
|
2023-08-28 10:06:20 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_alignStart="@id/container"
|
2017-09-27 11:41:51 +00:00
|
|
|
android:layout_alignTop="@id/container"
|
2023-08-28 10:06:20 +00:00
|
|
|
android:padding="6dp">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/completed_indicator"
|
|
|
|
|
android:layout_width="10dp"
|
|
|
|
|
android:layout_height="8dp"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:tintMode="multiply"
|
|
|
|
|
app:tint="@color/text_dimmed"
|
|
|
|
|
android:src="@drawable/checkmark_small"
|
|
|
|
|
android:layout_marginBottom="6dp"/>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/pin_indicator"
|
|
|
|
|
android:layout_width="13dp"
|
|
|
|
|
android:layout_height="13dp"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:scaleType="center"
|
2023-08-29 09:46:33 +00:00
|
|
|
android:tintMode="multiply"
|
|
|
|
|
app:tint="@color/text_dimmed"
|
2023-08-28 10:06:20 +00:00
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
</LinearLayout>
|
2017-07-20 17:59:59 +00:00
|
|
|
<TextView
|
2017-09-05 13:56:34 +00:00
|
|
|
android:id="@+id/item_detail_indicator"
|
2021-07-20 07:28:50 +00:00
|
|
|
android:layout_width="wrap_content"
|
2017-07-20 17:59:59 +00:00
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_gravity="end"
|
2017-08-22 19:13:29 +00:00
|
|
|
android:visibility="gone"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_alignEnd="@id/container"
|
2025-05-31 14:21:03 +00:00
|
|
|
android:importantForAccessibility="no"
|
2021-07-20 07:28:50 +00:00
|
|
|
style="@style/CountLabel"/>
|
2017-08-22 19:13:29 +00:00
|
|
|
</RelativeLayout>
|