2016-01-13 16:25:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-02-23 10:49:59 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-20 16:37:29 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-02-23 10:49:59 +00:00
|
|
|
android:id="@+id/wrapper"
|
|
|
|
|
android:layout_width="76dp"
|
2016-01-13 16:25:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2021-02-23 10:49:59 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center">
|
2022-05-02 15:25:53 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="76dp"
|
|
|
|
|
android:layout_height="76dp">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2016-01-13 16:25:08 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="60dp"
|
2022-05-02 15:25:53 +00:00
|
|
|
android:layout_height="68dp"
|
2020-03-20 16:37:29 +00:00
|
|
|
android:layout_gravity="start"
|
2022-05-02 15:25:53 +00:00
|
|
|
android:scaleType="fitCenter" />
|
|
|
|
|
</FrameLayout>
|
2020-03-20 16:37:29 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/buy_button"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price">
|
2022-06-30 10:53:54 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
2020-03-20 16:37:29 +00:00
|
|
|
android:id="@+id/price_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="32dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_quad"
|
2020-03-20 16:37:29 +00:00
|
|
|
tools:text="150"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
</FrameLayout>
|
2021-02-23 10:49:59 +00:00
|
|
|
</LinearLayout>
|