2016-07-26 17:30:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-20 12:19:10 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-07-21 15:53:51 +00:00
|
|
|
xmlns:fresco="http://schemas.android.com/apk/res-auto"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
2016-07-26 17:30:13 +00:00
|
|
|
|
2017-07-21 15:53:51 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/backgroundView"
|
2017-07-20 12:19:10 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-07-21 15:53:51 +00:00
|
|
|
android:layout_height="@dimen/shop_height"/>
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/sceneView"
|
|
|
|
|
android:layout_width="375dp"
|
|
|
|
|
android:layout_height="@dimen/shop_scene_height" />
|
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
|
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"
|
|
|
|
|
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"
|
2017-09-20 10:45:48 +00:00
|
|
|
android:layout_marginTop="124dp"
|
|
|
|
|
tools:text="Welcome to the Market! Stock up on new gear or buy rare eggs and potions. Check in periodically for new stock." />
|
2017-07-20 12:19:10 +00:00
|
|
|
</FrameLayout>
|