2020-05-22 18:17:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:background="@color/white"
|
|
|
|
|
android:focusable="true">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/card_view"
|
2020-05-23 02:29:15 +00:00
|
|
|
android:layout_width="127dp"
|
|
|
|
|
android:layout_height="140dp"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
2020-05-22 18:17:45 +00:00
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
style="@style/CardContent">
|
|
|
|
|
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/imageView"
|
2020-05-23 02:29:15 +00:00
|
|
|
android:layout_width="79dp"
|
|
|
|
|
android:layout_height="94dp"
|
2020-05-22 18:17:45 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:scaleType="fitEnd" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="3.5dp"
|
2020-05-23 02:29:15 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:textSize="13sp"
|
2020-05-22 18:17:45 +00:00
|
|
|
android:gravity="center"
|
2020-05-23 02:29:15 +00:00
|
|
|
style="@style/RowTitle"/>
|
2020-05-22 18:17:45 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/ownedTextView"
|
|
|
|
|
style="@style/RowText"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-05-23 02:29:15 +00:00
|
|
|
android:layout_height="match_parent"
|
2020-05-22 18:17:45 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</RelativeLayout>
|