CardView
发布于android sdk v7的支持包中,具体如何将项目加入v7包,请看这里传送门。
Android – 5.0 Lollipop
卡片化是全新的Material风格设计中重要的组成部分之一,卡片设计适合重要信息的展示,以及在list中作为一个包含有复杂操作的item使用。
CardView
继承于Framelayout
,比FrameLayout
多了3个重要的属性,card_view:cardElevation
,card_view:cardCornerRadius
,card_view:cardBackgroundColor
。
card_view:cardElevation
,可以设置卡片的阴影,可以使CardView
在z轴方向上有一种抬升的视觉效果,public void setCardElevation (float radius)
。card_view:cardCornerRadius
,显然就是设置CardView
的圆角了。对应代码里的方法public void setRadius (float radius)
。card_view:cardBackgroundColor
,设置CardView
的背景颜色,这个属性是不会影响阴影card_view:cardElevation
的效果的。public void setCardBackgroundColor (int color)
。
<android.support.v7.widget.CardView android:id="@+id/cardview" android:layout_width="fill_parent" android:layout_height="wrap_content" card_view:cardElevation="100dp" card_view:cardBackgroundColor="@color/grey" card_view:cardCornerRadius="8dp" android:layout_marginLeft="@dimen/margin" android:layout_marginRight="@dimen/margin"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="@dimen/margin" android:text="这里是CardView" /> </android.support.v7.widget.CardView>
时间: 2024-10-23 05:37:49