gpt4 book ai didi

android - 如何正确设置 recyclerview 的高程值?

转载 作者:可可西里 更新时间:2023-11-01 18:45:10 24 4
gpt4 key购买 nike

我正在使用 android 中的 recyclerview 进行网格布局。网格占据屏幕的一部分并且有阴影。为了获得所需的阴影效果,我使用了 12 dp 的高程值。但它似乎不起作用,因为我看不到网格的任何高度(阴影)。为什么会这样? recyclerview 不支持提升吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:id="@+id/activity_grid_layout"
android:background="@drawable/gradient"
android:layout_height="match_parent"
tools:context="com.mindhive.mindhive.activities.GridActivity">

<android.support.v7.widget.RecyclerView
android:id="@+id/grid_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="110dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="80dp"
android:background="@color/transparent"
android:elevation="12dp"
android:scrollIndicators="none"
android:scrollbars="none"
android:padding="0dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/grid_recycler_view"
android:layout_alignStart="@+id/grid_recycler_view"
android:layout_marginBottom="-18dp"
android:layout_marginStart="67dp"
android:src="@drawable/main_filter"
android:elevation="1dp" />
......

最佳答案

我从 here 搜索了一下后找到了答案.问题是透明背景。海拔仅适用于 View 的非透明背景。要修复它,我们应该在 View 上设置 android:outlineProvider="bounds" 并在 View 的父 View 上设置 android:clipToPadding="false"

希望对大家有帮助。

关于android - 如何正确设置 recyclerview 的高程值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33412771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com