繁体   English   中英

Android 卡视图 每侧有阴影

[英]Android Card View Shadow in each side

我想在卡片视图的每一侧都有相同的阴影,就像在棒棒糖设备及以上设备上的下图一样:

在此处输入图像描述

我希望这对你有用。 您可以尝试使用app:cardElevation="8dp"属性并更改值以满足您的需要。 请记住先将此属性添加到父布局中,尽管xmlns:app="http://schemas.android.com/apk/res-auto"

下面的例子

<?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"
android:layout_width="match_parent"
android:layout_height="wrap_content">

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:padding="10dp"
        app:cardCornerRadius="10dp"
        app:cardElevation="8dp">

    </androidx.cardview.widget.CardView>

</RelativeLayout>

至于圆角,您可以使用app:cardCornerRadius="10dp"并调整值以满足您的需要。

关键是使用 android:elevation="@dimen/_4sdp"。

 <androidx.cardview.widget.CardView
    android:id="@+id/card"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/_4sdp"
    android:background="@drawable/bg_white"
    android:elevation="@dimen/_4sdp"
    app:cardCornerRadius="@dimen/_8sdp">

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM