<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorGray">
<include
android:id="@+id/toolbar"
layout="@layout/include_layout_fitting" />
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar"
android:orientation="vertical">
<TextView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:scaleType="centerCrop" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="80dp"
android:layout_marginRight="10dp">
<android.support.v7.widget.CardView
android:id="@+id/id_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:foreground="?android:attr/selectableItemBackground"
app:cardCornerRadius="5dp"
app:cardElevation="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginLeft="@dimen/dimens_10"
android:layout_marginTop="@dimen/dimens_20"
android:layout_marginRight="@dimen/dimens_10"
android:background="@drawable/mine_blue_shape"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_heig
网友评论