2021-01-29 13:15:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal">
|
2022-05-12 11:32:36 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PixelArtView
|
2021-01-29 13:15:49 +00:00
|
|
|
android:id="@+id/icon_view"
|
|
|
|
|
android:layout_height="@dimen/shopitem_image_size"
|
2021-06-07 14:09:57 +00:00
|
|
|
android:layout_width="@dimen/shopitem_image_size" />
|
2021-01-29 13:15:49 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-05 11:29:52 +00:00
|
|
|
style="@style/Subheader2"
|
2021-01-29 13:15:49 +00:00
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/description_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:textColor="@color/text_ternary"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|