2016-07-22 16:07:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-20 12:19:10 +00:00
|
|
|
<FrameLayout 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"
|
|
|
|
|
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-07-20 17:59:59 +00:00
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2017-07-20 17:59:59 +00:00
|
|
|
android:layout_gravity="center"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem">
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:layout_marginRight="@dimen/row_padding"
|
|
|
|
|
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">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/currency_icon_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
2017-07-20 17:59:59 +00:00
|
|
|
tools:src="@drawable/currency_gold"/>
|
2017-07-20 12:19:10 +00:00
|
|
|
<TextView
|
|
|
|
|
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"
|
|
|
|
|
android:layout_marginLeft="6dp"
|
2017-07-20 17:59:59 +00:00
|
|
|
style="@style/Body1"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:textSize="15sp"
|
|
|
|
|
/>
|
2017-07-20 17:59:59 +00:00
|
|
|
</LinearLayout>
|
2016-07-22 16:07:00 +00:00
|
|
|
</LinearLayout>
|
2017-07-20 17:59:59 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/item_limited_icon"
|
|
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
|
|
|
|
android:src="@drawable/item_limited_bubble"
|
|
|
|
|
android:layout_gravity="right"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/item_locked_icon"
|
|
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
|
|
|
|
android:src="@drawable/item_locked_bubble"
|
|
|
|
|
android:layout_gravity="right"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/item_count_icon"
|
|
|
|
|
android:layout_width="@dimen/shopitem_status_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_status_size"
|
|
|
|
|
android:background="@drawable/item_count_bubble"
|
|
|
|
|
android:layout_gravity="right"
|
|
|
|
|
android:visibility="gone"/>
|
2016-07-22 16:07:00 +00:00
|
|
|
|
2017-07-20 12:19:10 +00:00
|
|
|
</FrameLayout>
|