【发布时间】:2021-05-26 14:02:14
【问题描述】:
【问题讨论】:
【问题讨论】:
我希望这对你有用。您可以尝试使用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">
【讨论】: