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"
|
2017-07-20 17:59:59 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-21 15:53:51 +00:00
|
|
|
xmlns:fresco="http://schemas.android.com/apk/res-auto"
|
2017-07-20 17:59:59 +00:00
|
|
|
android:clickable="true"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:background="@color/white">
|
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">
|
2017-07-20 12:19:10 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
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"
|
|
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price">
|
2017-09-20 10:45:48 +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"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
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-07-20 17:59:59 +00:00
|
|
|
</LinearLayout>
|
2016-07-22 16:07:00 +00:00
|
|
|
</LinearLayout>
|
2017-09-27 11:41:51 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/pin_indicator"
|
|
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:layout_alignLeft="@id/container"
|
|
|
|
|
android:layout_alignTop="@id/container"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:textColor="@color/white" />
|
2017-07-20 17:59:59 +00:00
|
|
|
<TextView
|
2017-09-05 13:56:34 +00:00
|
|
|
android:id="@+id/item_detail_indicator"
|
2017-07-20 17:59:59 +00:00
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_gravity="right"
|
2017-08-22 19:13:29 +00:00
|
|
|
android:visibility="gone"
|
2017-08-23 09:55:55 +00:00
|
|
|
android:layout_alignRight="@id/container"
|
2017-09-05 10:41:44 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:textColor="@color/white"
|
2017-09-22 10:49:55 +00:00
|
|
|
android:layout_marginRight="-4dp"
|
|
|
|
|
android:textSize="12sp" />
|
2016-07-22 16:07:00 +00:00
|
|
|
|
2017-08-22 19:13:29 +00:00
|
|
|
</RelativeLayout>
|