2016-07-26 17:30:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-01-02 17:07:11 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-20 12:19:10 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
2016-07-26 17:30:13 +00:00
|
|
|
|
2023-03-06 14:58:32 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/shop_header_background"
|
|
|
|
|
android:clipChildren="true"
|
|
|
|
|
android:clipToOutline="true"
|
2023-05-04 10:55:39 +00:00
|
|
|
android:clipToPadding="true"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:layout_marginTop="8dp">
|
2018-02-13 12:43:48 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.NPCBannerView
|
|
|
|
|
android:id="@+id/npcBannerView"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-07-24 10:19:56 +00:00
|
|
|
android:layout_height="@dimen/shop_scene_height"
|
2023-03-06 14:58:32 +00:00
|
|
|
tools:background="@color/black" />
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
<ImageView
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_width="match_parent"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:layout_height="18dp"
|
2023-03-24 09:07:35 +00:00
|
|
|
android:layout_marginTop="115dp"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:src="@drawable/npc_gradient_banner"
|
2023-03-24 09:07:35 +00:00
|
|
|
android:importantForAccessibility="no"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:scaleType="fitXY"/>
|
2017-07-20 12:19:10 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/namePlate"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="28dp"
|
|
|
|
|
tools:text="Justin"
|
|
|
|
|
android:background="@drawable/name_plate"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:textColor="@color/white"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_marginStart="45dp"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:layout_marginTop="105dp"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:textStyle="bold" />
|
2016-07-26 17:30:13 +00:00
|
|
|
<TextView
|
2017-07-20 12:19:10 +00:00
|
|
|
android:id="@+id/descriptionView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
2023-03-06 14:58:32 +00:00
|
|
|
android:layout_marginTop="144dp"
|
2019-06-21 07:08:30 +00:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
|
style="@style/Body1"
|
2017-09-20 10:45:48 +00:00
|
|
|
tools:text="Welcome to the Market! Stock up on new gear or buy rare eggs and potions. Check in periodically for new stock." />
|
2024-01-02 17:07:11 +00:00
|
|
|
</FrameLayout>
|