2015-10-01 18:58:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
<layout xmlns:bind="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<data>
|
|
|
|
|
<import type="com.magicmicky.habitrpgwrapper.lib.models.Group" />
|
|
|
|
|
<import type="com.magicmicky.habitrpgwrapper.lib.models.QuestContent" />
|
|
|
|
|
<import type="android.view.View" />
|
2015-12-17 12:42:31 +00:00
|
|
|
<import type="android.text.Html"/>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
|
|
|
|
<variable
|
|
|
|
|
name="party"
|
|
|
|
|
type="Group" />
|
|
|
|
|
|
|
|
|
|
<variable
|
|
|
|
|
name="quest"
|
|
|
|
|
type="QuestContent" />
|
|
|
|
|
</data>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
|
|
|
|
|
|
|
|
|
android:scrollbars="vertical">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2015-12-25 11:55:48 +00:00
|
|
|
<com.rockerhieu.emojicon.EmojiconTextView
|
2015-10-01 18:58:04 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
2015-12-25 11:55:48 +00:00
|
|
|
bind:parsemarkdown="@{party.name}"
|
2015-10-01 18:58:04 +00:00
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp">
|
|
|
|
|
|
2015-12-25 11:55:48 +00:00
|
|
|
<com.rockerhieu.emojicon.EmojiconTextView
|
|
|
|
|
android:layout_margin="5dp"
|
2015-10-01 18:58:04 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-25 11:55:48 +00:00
|
|
|
bind:parsemarkdown="@{party.description}" />
|
2015-10-01 18:58:04 +00:00
|
|
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-17 13:01:39 +00:00
|
|
|
android:text="@string/quest"
|
2015-10-01 18:58:04 +00:00
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:visibility="@{quest != null ? View.VISIBLE : View.GONE}" />
|
|
|
|
|
|
|
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:visibility="@{quest != null ? View.VISIBLE : View.GONE}">
|
|
|
|
|
|
2015-12-17 12:58:47 +00:00
|
|
|
<LinearLayout
|
2015-10-01 18:58:04 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-17 12:58:47 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="8dp"
|
|
|
|
|
>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-08 21:34:14 +00:00
|
|
|
android:layout_marginBottom="8dp"
|
2015-12-17 12:58:47 +00:00
|
|
|
android:text="@{quest.text}"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
/>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
|
|
|
|
<ImageView
|
2015-12-17 12:50:55 +00:00
|
|
|
android:layout_width="wrap_content"
|
2015-12-08 21:34:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-12-17 12:58:47 +00:00
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
bind:imageName='@{"quest_"+ quest.key}'
|
|
|
|
|
/>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
2015-12-17 12:58:47 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@{quest.notes != null ? Html.fromHtml(quest.notes) : null}"
|
|
|
|
|
/>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
2015-12-17 12:58:47 +00:00
|
|
|
</LinearLayout>
|
2015-10-01 18:58:04 +00:00
|
|
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|
|
|
|
|
</layout>
|