2016-03-28 16:43:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-13 15:28:26 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-04-15 11:29:48 +00:00
|
|
|
android:layout_height="wrap_content"
|
2022-04-22 09:32:58 +00:00
|
|
|
android:clickable="false">
|
2020-07-13 15:28:26 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Title"
|
|
|
|
|
android:gravity="center"
|
2022-05-24 09:13:51 +00:00
|
|
|
style="@style/Subheader1"/>
|
2022-05-20 08:51:32 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PixelArtView
|
|
|
|
|
android:id="@+id/icon_view"
|
|
|
|
|
android:layout_width="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_height="@dimen/shopitem_image_size"
|
|
|
|
|
android:layout_margin="@dimen/spacing_medium"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:visibility="gone"/>
|
2020-07-13 15:28:26 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/menu_items"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2022-05-20 08:51:32 +00:00
|
|
|
android:orientation="vertical" />
|
2016-03-28 16:43:15 +00:00
|
|
|
</LinearLayout>
|