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

42 lines
1.6 KiB
XML
Raw Normal View History

2016-01-19 15:31:09 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-09-18 16:34:53 +00:00
<FrameLayout 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"
2016-01-19 15:31:09 +00:00
android:id="@+id/card_view"
2020-11-16 11:00:42 +00:00
android:layout_width="match_parent"
2016-01-19 15:31:09 +00:00
android:layout_height="wrap_content"
2020-11-16 11:00:42 +00:00
android:minHeight="60dp">
<LinearLayout
android:id="@+id/wrapper"
android:layout_width="76dp"
2016-01-19 15:31:09 +00:00
android:layout_height="wrap_content"
2020-11-16 11:00:42 +00:00
android:background="@drawable/layout_rounded_bg_window"
2016-01-19 15:31:09 +00:00
android:orientation="vertical"
2020-11-16 11:00:42 +00:00
android:layout_gravity="center">
2016-11-19 11:29:45 +00:00
<com.facebook.drawee.view.SimpleDraweeView
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"
app:roundedCornerRadius="6dp"
app:roundingBorderWidth="6dp"
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>
</LinearLayout>
2020-09-18 16:34:53 +00:00
</FrameLayout>