Android去除CardView默认的阴影
Posted 黄毛火烧雪下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android去除CardView默认的阴影相关的知识,希望对你有一定的参考价值。
平时使用CardView默认是带有阴影效果的,如果不想要阴影效果,只需要将以下属性设置为0即可:
app:cardElevation="0dp"
app:cardMaxElevation="0dp"
<androidx.cardview.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="188dp"
android:background="@color/transparent"
android:foreground="?android:attr/selectableItemBackground"
app:cardCornerRadius="12dp"
app:cardElevation="0dp"
app:cardMaxElevation="0dp">
</androidx.cardview.widget.CardView>
以上是关于Android去除CardView默认的阴影的主要内容,如果未能解决你的问题,请参考以下文章
android CardView,LinearCardView,RelativeCardView自定义和使用
android CardView,LinearCardView,RelativeCardView自定义和使用