android个人中心页面的设计
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android个人中心页面的设计相关的知识,希望对你有一定的参考价值。
参考技术A <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
以上是关于android个人中心页面的设计的主要内容,如果未能解决你的问题,请参考以下文章