<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:minHeight="100dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="?android:attr/selectableItemBackground"
android:layout_margin="5dp"
android:paddingBottom="5dp"
android:orientation="vertical"
>
<LinearLayout
android:id="@+id/recycler_view_test_item_person_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="15dp">
<ImageView
android:id="@+id/user_avater"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:minHeight="40dp"
android:minWidth="40dp"
android:background="#999999"/>
<TextView
android:id="@+id/recycler_view_test_item_person_name_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="123"
android:textSize="18sp" />
<TextView
android:id="@+id/recycler_view_test_item_person_age_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="456"
android:paddingLeft="5dp"
android:textSize="15sp" />
</LinearLayout>
</LinearLayout>
|