Android RecyclerView 内的 CardView - cardElevation 导致不需要的边距和底部阴影
Android CardView inside RecyclerView - cardElevation cause unwanted margin & bottom shadow
在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 & layout_marginTop=0dp,如果项目不是列表中的最后一项,它的底部阴影将 disappear
因为它被下一个项目(CardView)覆盖列表。
以下是预期的 UI 行为。整个 Watchlist 看起来像单个 CardView,但实际上它是一个 RecyclerView,每个项目都由 CardView 组成,只是底部阴影被它下面的下一个项目覆盖。这适用于 Android API 25 (Android 7.1.2) :
但在 Android API 16 (Android 4.1.2) 上,结果并不如预期。底部阴影(边框)仍然可见,看起来每个项目之间还添加了额外的边距。
知道如何在 Android 4.1.2 中解决这个问题吗?
我的原始猜测是,您正在使用支持库中的 CardView
。 Android.
不同版本下的卡片视图实现不同
我相信在 Android L 之前,库添加填充以保留 space 用于阴影绘制。
请查看CardView inside RecyclerView has extra margins了解更多详情。
在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 & layout_marginTop=0dp,如果项目不是列表中的最后一项,它的底部阴影将 disappear
因为它被下一个项目(CardView)覆盖列表。
以下是预期的 UI 行为。整个 Watchlist 看起来像单个 CardView,但实际上它是一个 RecyclerView,每个项目都由 CardView 组成,只是底部阴影被它下面的下一个项目覆盖。这适用于 Android API 25 (Android 7.1.2) :
但在 Android API 16 (Android 4.1.2) 上,结果并不如预期。底部阴影(边框)仍然可见,看起来每个项目之间还添加了额外的边距。
知道如何在 Android 4.1.2 中解决这个问题吗?
我的原始猜测是,您正在使用支持库中的 CardView
。 Android.
我相信在 Android L 之前,库添加填充以保留 space 用于阴影绘制。
请查看CardView inside RecyclerView has extra margins了解更多详情。