2016-03-28 16:43:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-16 03:48:23 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-16 17:07:56 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-04-16 03:48:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:background="@color/white"
|
|
|
|
|
android:focusable="true">
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/card_view"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="112dp"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
|
|
|
|
android:layout_centerInParent="true">
|
|
|
|
|
style="@style/CardContent">
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
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"
|
|
|
|
|
android:textSize="13sp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/RowTitle"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:id="@+id/ownedTextView"
|
|
|
|
|
style="@style/RowText"/>
|
2016-03-28 16:43:15 +00:00
|
|
|
</LinearLayout>
|
2020-04-16 03:48:23 +00:00
|
|
|
</RelativeLayout>
|