首先需要引入CardView包,compile ‘com.android.support:cardview-v7:23.0.1’
CardView常用属性

// 阴影的大小
card_view:cardElevation
// 阴影最大高度
card_view:cardMaxElevation
// 卡片的背景色
card_view:cardBackgroundColor
// 卡片的圆角大小
card_view:cardCornerRadius
// 卡片内容于边距的间隔
card_view:contentPadding
card_view:contentPaddingBottom
card_view:contentPaddingTop
card_view:contentPaddingLeft
card_view:contentPaddingRight
card_view:contentPaddingStart
card_view:contentPaddingEnd
// 设置内边距,V21+的版本和之前的版本仍旧具有一样的计算方式
card_view:cardUseCompatPadding
// 在V20和之前的版本中添加内边距,这个属性为了防止内容和边角的重叠
card_view:cardPreventConrerOverlap

然后只需要简单在XML文件中表示出来就可以了。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"    android:layout_height="match_parent" android:fitsSystemWindows="true"    tools:context=".MainActivity">    <android.support.design.widget.AppBarLayout android:layout_height="wrap_content"        android:layout_width="match_parent" android:theme="@style/AppTheme.AppBarOverlay">        <android.support.v7.widget.Toolbar android:id="@+id/toolbar"            android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"            android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />    </android.support.design.widget.AppBarLayout>    <include layout="@layout/content_main" />    <android.support.design.widget.FloatingActionButton android:id="@+id/fab"        android:layout_width="wrap_content" android:layout_height="wrap_content"        android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin"        android:src="@android:drawable/ic_dialog_email" /></android.support.design.widget.CoordinatorLayout>

content_main.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" android:orientation="vertical" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/activity_main" tools:context=".MainActivity">    <android.support.v7.widget.CardView  xmlns:card_view="http://schemas.android.com/apk/res-auto" android:layout_width="200dp" android:layout_height="wrap_content" card_view:cardBackgroundColor="#303069" card_view:cardCornerRadius="10dp" card_view:cardPreventCornerOverlap="true" card_view:cardUseCompatPadding="true" card_view:contentPadding="10dp" >        <TextView  android:text="Title" android:textSize="20sp" android:textColor="#fffffc31" android:layout_width="wrap_content" android:layout_height="wrap_content" />    </android.support.v7.widget.CardView>    <android.support.v7.widget.CardView  xmlns:card_view="http://schemas.android.com/apk/res-auto" android:layout_width="250dp" android:layout_height="wrap_content" card_view:cardBackgroundColor="#FF0E63FF" card_view:cardCornerRadius="10dp" card_view:cardPreventCornerOverlap="true" card_view:cardUseCompatPadding="true" card_view:contentPadding="10dp" >        <LinearLayout  android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content">            <TextView  android:text="Title" android:textSize="20sp" android:textColor="#ff24ff60" android:layout_width="wrap_content" android:layout_height="wrap_content" />            <TextView  android:text="SubTitle" android:textSize="15sp" android:textColor="@color/colorAccent" android:layout_width="wrap_content" android:layout_height="wrap_content" />        </LinearLayout>    </android.support.v7.widget.CardView></LinearLayout>

更多相关文章

  1. 首次下载android开源项目遇到的问题
  2. android的各个版本和logo
  3. [Android--Tool]Android如何将他人的代码放入新建的工程中
  4. 64位WIN7下Android(安卓)开发环境搭建(SDK Manager闪退,无法更新sd
  5. Qt5.2发布了
  6. Android三种库的区别:pravite libraries、referenced libraries和
  7. Android(安卓)ant自动打包脚本:自动替换友盟渠道、版本号、包名
  8. android-下载 gradle很慢的解决办法
  9. 《Google+Android开发入门与实践》书中googleApi学习之iTracks

随机推荐

  1. Android数据存储之File总结
  2. Android即时通讯服务,类似QQ的聊天工具,源
  3. Android(安卓)Linux开发准备
  4. Android程序中多个 Launcher Activity
  5. android之Service(3)Bound Service
  6. Android的图形与图像处理之一 使用简单图
  7. 赵雅智:Android短信发送器
  8. LayoutInflater的使用
  9. Android(安卓)文本输入框 获取焦点和设置
  10. Android(安卓)OpenGL 纹理绘制图像---Nat