habitica-android/Habitica/res/layout/customization_grid_background_item.xml

35 lines
1.5 KiB
XML
Raw Normal View History

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">
2022-05-02 15:25:53 +00:00
<FrameLayout
2020-11-16 11:00:42 +00:00
android:layout_width="76dp"
2022-05-02 15:25:53 +00:00
android:layout_height="76dp">
2022-05-20 07:51:14 +00:00
<com.habitrpg.android.habitica.ui.views.PixelArtView
2022-05-02 15:25:53 +00:00
android:id="@+id/imageView"
android:layout_width="68dp"
android:layout_height="68dp"
android:layout_gravity="center"
android:scaleType="fitCenter" />
</FrameLayout>
2020-11-16 11:00:42 +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-05-17 13:39:22 +00:00
<com.habitrpg.common.habitica.views.CurrencyView
2020-11-16 11:00:42 +00:00
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:layout_gravity="center" />
</FrameLayout>
2021-02-23 10:49:59 +00:00
</LinearLayout>