RecyclerView内部的Android CardView - cardElevation导致不必要的保证金&底影

时间:2017-07-25 05:27:11

标签: android android-recyclerview android-cardview android-elevation

在Android中,我使用RecyclerView。对于RecyclerView的项目,我使用CardView作为项目布局,下面是xml布局:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="0dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="0dp"
    app:cardElevation="2dp"
    app:cardCornerRadius="0dp"
    app:cardPreventCornerOverlap="false"

    android:foreground="?attr/selectableItemBackground"
    android:clickable="true" >

    <LinearLayout
        android:minHeight="48dp"
        android:layout_marginTop="0dp"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginBottom="0dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    .......

    </LinearLayout>
</CardView>

我正在使用来自android.support.v7.widget.CardView的CardView。

我设置cardElevation="2dp", layout_marginBottom="0dp", layout_marginTop="0dp"。设置cardElevation会在左,右和右侧产生阴影。 CardView的底部。然后通过设置layout_marginBottom&amp; layout_marginTop = 0dp,如果item不是列表中的最后一项,它的底部阴影将disappear,因为它被列表中的下一个项目(CardView)覆盖。

以下是预期的UI行为。整个Watchlist看起来像单个CardView,但实际上它是一个RecyclerView,每个项目都包含CardView,只有底部阴影被下面的下一个项目覆盖。这适用于Android API 25(Android 7.1.2):

Correct Behaviour - Api 25

但是在Android API 16(Android 4.1.2)上,结果并不像预期的那样。底部阴影(边框)仍然可见,看起来每个项目之间还有额外的边距。

Wrong Behaviour - Api 16

知道如何在Android 4.1.2中解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

我的猜测是,您正在使用支持库中的CardView。不同版本的Android下有不同的卡片视图实现。

我相信在Android L之前,库添加填充以便为阴影绘制保留空间。

请查看CardView inside RecyclerView has extra margins了解详情。