阴影似乎切断了我对 CardView 的一些使用。 知道为什么吗?看起来删除父级上的填充可以解决问题,但我确实想要填充。而且我不想在内卡上使用边距,因为还有其他视图对齐,并且我更喜欢在父级上设置填充以应用于所有子级
有什么解决办法吗?
布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
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"
android:layout_marginTop="@dimen/standard_spacing"
android:layout_marginLeft="@dimen/standard_spacing"
android:layout_marginRight="@dimen/standard_spacing"
android:layout_marginBottom="@dimen/smaller_spacing"
app:cardCornerRadius="@dimen/standard_card_corner_radius"
app:cardElevation="10dp">
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/standard_spacing">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardBackgroundColor="@color/light_gray_background"
android:minHeight="40dp"
app:cardElevation="5dp"
app:cardCornerRadius="@dimen/standard_card_corner_radius" >
</androidx.cardview.widget.CardView>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.cardview.widget.CardView>
添加
android:clipToPadding="false"
到线性布局
以下是解决方法
添加到CardView或MaterialCardView
app:cardUseCompatPadding="true"