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

42 lines
1.6 KiB
XML
Raw Normal View History

2016-07-26 17:30:13 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-09-10 10:01:47 +00:00
<mrge 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
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"
android:paddingStart="-8dp"
android:paddingEnd="-8dp"/>
2018-02-13 12:43:48 +00:00
2017-07-20 12:19:10 +00:00
<View
android:layout_width="match_parent"
2017-09-20 10:45:48 +00:00
android:layout_height="28dp"
android:layout_marginTop="97dp"
2017-07-20 12:19:10 +00:00
android:background="@drawable/gradient_white"/>
<TextView
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"
android:layout_marginLeft="45dp"
2017-09-20 10:45:48 +00:00
android:layout_marginTop="83dp"
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"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
2019-06-21 07:08:30 +00:00
android:layout_marginTop="120dp"
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." />
2020-09-10 10:01:47 +00:00
</mrge>