2016-03-31 13:57:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-31 13:57:57 +00:00
|
|
|
android:id="@+id/card_view"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_width="match_parent">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/linearLayout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@drawable/selection_highlight"
|
|
|
|
|
style="@style/CardContent">
|
2016-11-19 11:29:45 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2016-03-31 13:57:57 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/pet_image_width"
|
|
|
|
|
android:layout_height="@dimen/pet_image_height"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:scaleType="fitEnd" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
style="@style/RowTitle"/>
|
|
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-04-25 12:53:36 +00:00
|
|
|
android:id="@+id/trainedProgressBar"
|
|
|
|
|
android:max="50" />
|
2016-03-31 13:57:57 +00:00
|
|
|
</LinearLayout>
|
2018-11-06 15:11:02 +00:00
|
|
|
</androidx.cardview.widget.CardView>
|