阴影系列:CardView实现圆角阴影效果

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阴影系列:CardView实现圆角阴影效果相关的知识,希望对你有一定的参考价值。

效果图。

  • 核心代码
		app:cardCornerRadius="12dp"
        app:cardElevation="12dp"
        app:cardPreventCornerOverlap="true"
        app:cardUseCompatPadding="true"
        app:cardBackgroundColor="#ffffff"
  • 先引入CardView依赖包
 implementation 'androidx.cardview:cardview:1.0.0'
  • 完整布局代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.cardview.widget.CardView
        android:layout_width="300dp"
        android:layout_height="200dp"
        app:cardCornerRadius="12dp"
        app:cardElevation="12dp"
        app:cardPreventCornerOverlap="true"
        app:cardUseCompatPadding="true"
        app:cardBackgroundColor="#ffffff"
        android:layout_centerInParent="true"
        >
    </androidx.cardview.widget.CardView>

</RelativeLayout>

问题: CardView 阴影能自定义的颜色吗?

可以,下一篇: 阴影系列:YcCardView实现不同颜色的阴影(带圆角)

以上是关于阴影系列:CardView实现圆角阴影效果的主要内容,如果未能解决你的问题,请参考以下文章

使用CardView实现圆角或圆形的效果

使用CardView实现圆角或圆形的效果

Android5.0之CardView的使用

Android实现侧滑recycleView+CardVeiw卡片阴影效果

Android实现侧滑recycleView+CardVeiw卡片阴影效果

Android实现侧滑recycleView+CardVeiw卡片阴影效果