2018-02-09 16:48:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-02-15 15:43:31 +00:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-02-09 16:48:27 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-02-15 15:43:31 +00:00
|
|
|
tools:parentTag="android.widget.LinearLayout"
|
2018-02-09 16:48:27 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
<TextView
|
2018-02-15 15:43:31 +00:00
|
|
|
android:id="@+id/bossNameView"
|
|
|
|
|
android:layout_width="wrap_content"
|
2018-02-09 16:48:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Quest Boss"
|
2018-02-15 15:43:31 +00:00
|
|
|
style="@style/Body1"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_medium"/>
|
2018-02-09 16:48:27 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.ValueBar
|
2018-02-15 15:43:31 +00:00
|
|
|
android:id="@+id/bossHealthView"
|
2018-02-09 16:48:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:barForegroundColor="@color/red_100"
|
2018-02-15 15:43:31 +00:00
|
|
|
app:barPendingColor="@color/yellow_50"
|
|
|
|
|
app:lightBackground="true"
|
|
|
|
|
app:valueTextColor="@color/red_100"
|
|
|
|
|
app:labelSpacing="@dimen/spacing_medium"
|
|
|
|
|
app:descriptionTextColor="@color/yellow_5"/>
|
2018-07-26 13:44:47 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.ValueBar
|
|
|
|
|
android:id="@+id/bossRageView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:barForegroundColor="@color/orange_100"
|
|
|
|
|
app:lightBackground="true"
|
|
|
|
|
app:valueTextColor="@color/orange_100"
|
|
|
|
|
app:labelSpacing="@dimen/spacing_medium" />
|
2018-02-09 16:48:27 +00:00
|
|
|
<LinearLayout
|
2018-02-15 15:43:31 +00:00
|
|
|
android:id="@+id/collectionContainer"
|
2018-02-09 16:48:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"/>
|
2020-07-28 20:06:44 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/collectedItemsNumberView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:gravity="end"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="+N items found"/>
|
2018-02-15 15:43:31 +00:00
|
|
|
</merge>
|