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-07-31 12:01:02 +00:00
|
|
|
android:layout_width="68dp"
|
|
|
|
|
android:layout_height="68dp"
|
2020-06-25 15:57:01 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
|
app:actualImageScaleType="fitCenter"/>
|
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"
|
2020-07-22 13:14:41 +00:00
|
|
|
android:layout_marginStart="7dp"
|
|
|
|
|
android:layout_marginEnd="7dp"
|
2019-04-16 17:07:56 +00:00
|
|
|
android:max="50" />
|
2020-07-20 13:51:24 +00:00
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/item_wrapper"
|
2020-07-21 12:38:42 +00:00
|
|
|
android:layout_width="86dp"
|
2020-07-20 13:51:24 +00:00
|
|
|
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"
|
2020-07-20 13:51:24 +00:00
|
|
|
android:layout_gravity="center" />
|
2020-07-24 10:19:56 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/RowTitle" />
|
2019-04-16 17:07:56 +00:00
|
|
|
</LinearLayout>
|