2015-11-25 17:47:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-24 16:01:55 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-13 16:24:52 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
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
|
|
|
|
2020-01-24 16:01:55 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
2020-01-24 16:01:55 +00:00
|
|
|
android:clipToPadding="true"
|
|
|
|
|
android:clipChildren="true"
|
2022-05-20 10:22:11 +00:00
|
|
|
android:clipToOutline="true"
|
2020-01-24 16:01:55 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:layout_marginBottom="4dp">
|
|
|
|
|
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
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"
|
2020-01-24 16:01:55 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="8dp"/>
|
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"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
|
android:layout_marginEnd="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"
|
2020-01-24 16:01:55 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:layout_marginBottom="12dp">
|
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>
|
2020-01-24 16:01:55 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/button_wrapper"
|
|
|
|
|
android:layout_width="48dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/blue_500"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/button_icon_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
2021-03-31 11:14:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"/>
|
2020-01-24 16:01:55 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/price_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
2021-03-31 11:14:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
2020-01-24 16:01:55 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/count_label"
|
2021-07-20 07:28:50 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-01-24 16:01:55 +00:00
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
|
android:layout_marginStart="13dp"
|
2021-07-20 07:28:50 +00:00
|
|
|
tools:text="10000"
|
|
|
|
|
style="@style/CountLabel"
|
2020-01-24 16:01:55 +00:00
|
|
|
/>
|
|
|
|
|
</RelativeLayout>
|