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

33 lines
1.4 KiB
XML
Raw Normal View History

2016-03-31 13:57:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
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>
</android.support.v7.widget.CardView>