码迷,mamicode.com
首页 > 其他好文 > 详细

Material Design CardView

时间:2016-03-31 18:27:30      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

先初始化 xmlns:card_view="http://schemas.android.com/apk/res-auto"

card_view:cardElevation   设置阴影

card_view:cardCornerRadius  设置角度

card_view:cardBackgroundColor 设置背景色

card_view:cardUserCompatPadding 设置padding填充在版本L之前和之后的填充效果一致,避免版本L之前会不显示阴影

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
        ... >
        <!-- A CardView that contains a TextView -->
    <android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:id="@+id/card_view"
        android:layout_gravity="center"
        android:layout_width="200dp"
        android:layout_height="200dp"
        card_view:cardElevation="4dp"
        card_view:cardCornerRadius="4dp"
        card_view:cardCornerRadius="4dp" >
    
    <TextView
        android:id="@+id/info_text"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    </android.support.v7.widget.CardView>
</LinearLayout>

 

Material Design CardView

标签:

原文地址:http://www.cnblogs.com/rfheh/p/5342043.html

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