2017-05-23 15:40:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2017-05-23 15:40:13 +00:00
|
|
|
android:id="@+id/icon_view"
|
2020-04-10 11:16:17 +00:00
|
|
|
android:layout_width="40dp"
|
2023-03-24 09:07:35 +00:00
|
|
|
android:layout_height="40dp"
|
2017-05-23 15:40:13 +00:00
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/name_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
tools:text="item to collect"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_small"/>
|
2022-05-17 13:39:22 +00:00
|
|
|
<com.habitrpg.common.habitica.views.ValueBar
|
2017-05-23 15:40:13 +00:00
|
|
|
android:id="@+id/value_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:lightBackground="true"
|
2017-09-11 11:31:20 +00:00
|
|
|
app:barForegroundColor="@color/green_100"/>
|
2017-05-23 15:40:13 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|