2015-11-25 17:47:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-04-13 16:24:52 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
style="@style/RowWrapper"
|
2015-11-25 17:47:56 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-04-13 16:24:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
2016-04-14 13:36:17 +00:00
|
|
|
|
2016-11-19 11:29:45 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2016-10-03 20:47:02 +00:00
|
|
|
android:id="@+id/skill_image"
|
2016-04-14 13:36:17 +00:00
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:layout_gravity="center_vertical" />
|
2015-11-25 17:47:56 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
2015-11-26 20:26:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-10-03 20:47:02 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2016-04-14 13:36:17 +00:00
|
|
|
android:layout_marginLeft="8dp"
|
2017-04-13 16:24:52 +00:00
|
|
|
android:layout_marginRight="8dp"
|
2016-10-03 20:47:02 +00:00
|
|
|
android:layout_weight="1"
|
2016-04-14 13:36:17 +00:00
|
|
|
android:gravity="center_vertical"
|
2016-10-03 20:47:02 +00:00
|
|
|
android:orientation="vertical">
|
2015-11-25 17:47:56 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2016-10-03 20:47:02 +00:00
|
|
|
android:id="@+id/skill_text"
|
2016-04-14 13:36:17 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-11-25 17:47:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-04-13 16:24:52 +00:00
|
|
|
tools:text="Spell Name"
|
|
|
|
|
style="@style/Subheader1"/>
|
2015-11-25 17:47:56 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/skill_notes"
|
|
|
|
|
android:layout_width="match_parent"
|
2017-04-13 16:24:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Caption2.Regular"
|
|
|
|
|
tools:text="This is the spell description"/>
|
2015-11-25 17:47:56 +00:00
|
|
|
</LinearLayout>
|
2017-04-13 16:24:52 +00:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/price_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:minWidth="64dp"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:gravity="left|center_vertical"
|
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
|
android:background="@drawable/rounded_purple_square"
|
|
|
|
|
android:paddingLeft="12dp"
|
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
|
android:paddingRight="12dp"
|
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
tools:text="150"
|
2017-09-05 13:56:34 +00:00
|
|
|
android:textSize="15sp" />
|
2017-04-13 16:24:52 +00:00
|
|
|
</LinearLayout>
|