我的布局中有一个cardView
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/google_scrim"
android:fitsSystemWindows="true"
tools:ignore="Overdraw">
<android.support.constraint.Guideline
android:id="@+id/top_guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_begin="0dp"/>
<androidx.cardview.widget.CardView
android:id="@+id/popover"
style="@style/popover_style"
android:layout_width="@dimen/popover_width"
android:layout_height="0dp"
android:layout_marginBottom="@dimen/popover_bottom_margin"
android:layout_marginLeft="@dimen/popover_side_margin"
android:layout_marginRight="@dimen/popover_side_margin"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_default="wrap"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/popover_top_guideline"
app:layout_constraintVertical_bias="0"
card_view:cardCornerRadius="@dimen/popup_corner_radius"
card_view:cardElevation="0dp"
card_view:cardMaxElevation="0dp">
</androidx.cardview.widget.CardView>
</android.support.constraint.ConstraintLayout>
我发现21以上或以下的Android API大小不同。
我知道这是因为为21以下的API创建的阴影有多余的填充,但是我无法将填充设为0(就像调试API 21时一样)
我试图将cardElevation和macCardElevation设置为0,但这没有帮助。
有什么主意吗?