码迷,mamicode.com
首页 > 移动开发 > 详细

android 5.0新特性学习--CardView

时间:2014-12-29 22:59:29      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:

 CardView继承自FrameLayout类,可以在一个卡片布局中一致性的显示内容,卡片可以包含圆角和阴影。CardView是一个Layout,可以布局其他View.

CardView的属性:

  elevation --CardView的Z轴阴影;

  cardBackgroundColor--CardView的卡片颜色;

  cardConerRadius -- CardView卡片的四角圆角矩形程度;

下面xml文件中即表示这个card控件为:矩形程度为8dp,背景颜色为黑色的卡片。

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:app="http://schemas.android.com/apk/res-auto"  
    android:id="@+id/cardview"  
    app:cardCornerRadius="8dp"  
    app:cardBackgroundColor="@color/black"  
    android:layout_margin="8dp"  
    android:layout_height="80dp"  
    android:layout_width="match_parent">  
  
    <TextView  
        android:text="TextView in CardView"  
        android:layout_gravity="center"  
        android:textSize="26sp"  
        android:textColor="@color/l_white"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content" />  
</android.support.v7.widget.CardView>  

 

android 5.0新特性学习--CardView

标签:

原文地址:http://www.cnblogs.com/androidsuperman/p/4192538.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!