赞
踩
目录
2.3.1 设置卡片背景(app:cardBackgroundColor)
顾名思义,就是卡片布局。现在卡片布局越来越普及了,以前都是各种shape
来实现卡片效果,现在可以直接用控件来实现,是不是美滋滋?CardView
实用性还是比较强的,一起来试试吧?
implementation 'com.google.android.material:material:1.10.0'
material:1.10.0
要求SDK大于等于34,如果不打算兼容那么高的,建议降低至1.8.0
,不影响CardView
的使用。
CardView继承自FrameLayout,可以让我们使用类似卡片布局来显示一致性效果的内容。同时卡片还可以包含圆角和阴影
效果。
app:cardBackgroundColor 设置背景颜色
app:cardCornerRadius 设置圆角大小,不要圆角设置为0
app:cardElevation 设置z轴的阴影,不需要阴影设置为0
app:cardMaxElevation 设置z轴的最大高度值
app:contentPadding 设置padding
app:contentPaddingLeft
app:contentPaddingTop
app:contentPaddingRight
app:contentPaddingBottom
需要注意的是这里的前缀是app
,而不是android
。
默认是带点阴影效果的。
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_margin="10dp"
- android:background="@color/purple_200"
- app:cardCornerRadius="10dp"
- app:contentPadding="20dp"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="wrap_content"
- android:text="圆角 CardView "
- android:textColor="@color/black"
- android:layout_height="wrap_content"/>
- </androidx.cardview.widget.CardView>
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_margin="10dp"
- app:cardCornerRadius="10dp"
- app:cardElevation="20dp"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="wrap_content"
- android:layout_gravity="center"
- android:layout_margin="20dp"
- android:text="阴影 CardView"
- android:textColor="@color/black"
- android:layout_height="wrap_content"/>
- </androidx.cardview.widget.CardView>
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_margin="10dp"
- app:cardBackgroundColor="@color/purple_200"
- app:cardCornerRadius="10dp"
- app:cardElevation="20dp"
- android:layout_height="wrap_content">
- <LinearLayout
- android:layout_width="match_parent"
- android:orientation="vertical"
- android:layout_height="wrap_content">
- <TextView
- .../>
- <TextView
- .../>
- </LinearLayout>
- </androidx.cardview.widget.CardView>
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_margin="10dp"
- app:cardCornerRadius="10dp"
- app:cardElevation="20dp"
- android:layout_height="wrap_content">
- <LinearLayout
- android:layout_width="match_parent"
- android:orientation="vertical"
- android:background="@color/purple_200"
- android:layout_height="wrap_content">
- <TextView
- .../>
- <TextView
- .../>
- </LinearLayout>
- </androidx.cardview.widget.CardView>
同时设置 app:cardBackgroundColor
和 android:background
。
- <androidx.cardview.widget.CardView
- app:cardBackgroundColor="#44ff0000"
- android:background="#440000ff"
- ...>
- <TextView
- android:background="#440000ff"
- />
- </androidx.cardview.widget.CardView>
- <androidx.cardview.widget.CardView
- ...
- app:cardBackgroundColor="#ff0000"
- android:background="#00ff00">
- <TextView
- ...
- android:background="#0000ff"/>
- </androidx.cardview.widget.CardView>
android:background明显会被app:cardBackgroundColor消费(覆盖)掉
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。