2016-01-19 15:31:09 +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-11-16 11:00:42 +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-19 15:31:09 +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">
|
2021-06-07 14:09:57 +00:00
|
|
|
<ImageView
|
2016-01-19 15:31:09 +00:00
|
|
|
android:id="@+id/imageView"
|
2020-11-16 11:00:42 +00:00
|
|
|
android:layout_width="76dp"
|
|
|
|
|
android:layout_height="76dp"
|
|
|
|
|
android:layout_gravity="start"
|
|
|
|
|
android:scaleType="fitEnd" />
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/buy_button"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_shopitem_price">
|
|
|
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
|
|
|
|
android:id="@+id/price_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:textColor="@color/text_quad"
|
|
|
|
|
tools:text="150"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
</FrameLayout>
|
2021-02-23 10:49:59 +00:00
|
|
|
</LinearLayout>
|