Android Card View Shadow 每侧

问题描述

我希望在卡片视图的每一侧都有相同的阴影,如下图在棒棒糖设备及以上设备上:

enter image description here

解决方法

我希望这对你有用。您可以尝试使用 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">

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...