2016-03-28 16:43:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-16 03:48:23 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-16 17:07:56 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-23 13:40:51 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true">
|
2020-07-23 13:40:51 +00:00
|
|
|
<LinearLayout
|
2020-04-16 03:48:23 +00:00
|
|
|
android:id="@+id/card_view"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:layout_width="76dp"
|
|
|
|
|
android:layout_height="96dp"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:orientation="vertical"
|
2020-05-15 20:59:47 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:layout_centerInParent="true">
|
2020-07-30 10:44:01 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="68dp"
|
|
|
|
|
android:layout_height="58dp"
|
|
|
|
|
android:layout_gravity="center">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2020-04-16 03:48:23 +00:00
|
|
|
android:id="@+id/imageView"
|
2020-07-30 10:44:01 +00:00
|
|
|
android:layout_width="68dp"
|
|
|
|
|
android:layout_height="68dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
/>
|
|
|
|
|
</FrameLayout>
|
2020-04-16 03:48:23 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
2020-07-24 10:19:56 +00:00
|
|
|
android:layout_height="18dp"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/titleTextView"
|
2020-07-24 10:19:56 +00:00
|
|
|
android:textSize="12sp"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2020-04-16 03:48:23 +00:00
|
|
|
style="@style/RowTitle"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:layout_height="20dp"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/ownedTextView"
|
2020-05-15 20:59:47 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2020-04-16 03:48:23 +00:00
|
|
|
style="@style/RowText"/>
|
2016-03-28 16:43:15 +00:00
|
|
|
</LinearLayout>
|
2020-04-16 03:48:23 +00:00
|
|
|
</RelativeLayout>
|