美文网首页Android
Android去除CardView默认的阴影

Android去除CardView默认的阴影

作者: Sarah_Y | 来源:发表于2021-05-14 00:30 被阅读0次

平时使用CardView默认是带有阴影效果的,如果不想要阴影效果,只需要将以下属性设置为0即可:

app:cardElevation="0dp"
app:cardMaxElevation="0dp"
image.gif

完整的使用如下:

    <androidx.cardview.widget.CardView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        app:cardBackgroundColor="#ffffff"
        app:cardCornerRadius="10dp"
        app:cardElevation="0dp"
        app:cardMaxElevation="0dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            .......
        </LinearLayout>
    </androidx.cardview.widget.CardView>
image.gif

相关文章

网友评论

    本文标题:Android去除CardView默认的阴影

    本文链接:https://www.haomeiwen.com/subject/biyfjltx.html