Material Design之CardView的基本用法

时间:2021-12-02 05:28:35

Gradle 依赖

compile 'com.android.support:cardview-v7:+'


用法:

<android.support.v7.widget.CardView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      card_view:cardBackgroundColor="@color/colorAccent"
      card_view:cardCornerRadius="10dp"
      card_view:cardElevation="5dp"
      card_view:contentPadding="8dp">
      <!--子布局控件-->
</android.support.v7.widget.CardView>


CardView的常用属性

阴影的大小 app:cardMaxElevation
阴影最大高度 app:cardBackgroundColor
卡片的背景色 app:cardCornerRadius
卡片的圆角大小 app:contentPadding
卡片内容于边距的间隔 app:contentPaddingBottom
卡片内容与底部的边距 app:contentPaddingTop
卡片内容与顶部的边距 app:contentPaddingLeft
卡片内容与左边的边距 app:contentPaddingRight
卡片内容与右边的边距 app:contentPaddingStart
卡片内容于边距的间隔起始 app:contentPaddingEnd
卡片内容于边距的间隔终止 app:cardUseCompatPadding

添加点击波纹效果

android:clickable="true"
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground"