mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
|
|
<?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">
|
||
|
|
<ImageView
|
||
|
|
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"
|
||
|
|
android:id="@+id/trainedProgressBar" />
|
||
|
|
</LinearLayout>
|
||
|
|
</android.support.v7.widget.CardView>
|