habitica-android/Habitica/res/layout/pet_detail_item.xml

69 lines
2.7 KiB
XML
Raw Normal View History

2016-03-31 13:57:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
2019-04-16 17:07:56 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-06-25 15:57:01 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2016-03-31 13:57:57 +00:00
android:id="@+id/card_view"
2020-06-25 15:57:01 +00:00
android:layout_height="96dp"
android:layout_width="76dp"
2019-04-16 17:07:56 +00:00
android:background="@drawable/layout_rounded_bg_gray_700"
android:orientation="vertical"
2020-06-25 15:57:01 +00:00
android:padding="8dp">
2019-04-16 17:07:56 +00:00
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/imageView"
2020-06-25 15:57:01 +00:00
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_gravity="center"
app:actualImageScaleType="fitCenter"/>
2016-03-31 13:57:57 +00:00
2019-04-16 17:07:56 +00:00
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/trainedProgressBar"
2020-06-25 15:57:01 +00:00
android:progressTint="@color/green_100"
android:progressBackgroundTint="@color/gray_600"
android:layout_marginTop="4dp"
android:layout_marginStart="9dp"
android:layout_marginEnd="9dp"
2019-04-16 17:07:56 +00:00
android:max="50" />
2020-07-20 12:50:11 +00:00
<LinearLayout
android:id="@+id/items_available_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<ImageView
android:id="@+id/egg_available_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pet_status_egg"
android:layout_marginEnd="8dp"/>
<ImageView
android:id="@+id/potion_available_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pet_status_potion" />
</LinearLayout>
<RelativeLayout
android:id="@+id/item_wrapper"
android:layout_width="86dp"
android:layout_height="70dp"
android:layout_gravity="center">
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/hatchingPotion_view"
android:layout_width="72dp"
android:layout_height="72dp"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true" />
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/egg_view"
android:layout_width="72dp"
android:layout_height="72dp"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
<ImageView
android:id="@+id/checkmark_view"
2020-07-20 14:24:43 +00:00
android:layout_width="12dp"
android:layout_height="10dp"
android:src="@drawable/pet_checkmark"
android:layout_gravity="center" />
2019-04-16 17:07:56 +00:00
</LinearLayout>