我有一个海拔8dp,透明背景和boundProvider边界的recyclerview。父relativelayout上的clipToPadding设置为false。我正面临一个奇怪的问题,因为这个阴影投射了 recyclerview海拔。阴影似乎掩盖了recyclerview的边缘,或者relativelayout和子recyclelerview之间有一个额外的层(附加图像参考)。究竟是什么导致了这种影响?我搜索了很多,但找不到任何解释。欢迎任何建议。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_grid_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false">
<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:outlineProvider="bounds"
android:elevation="8dp"
android:padding="0dp"
android:scrollbars="none" />
<ImageView
android:id="@+id/grid_main_filter_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_alignBottom="@+id/grid_recycler_view"
android:layout_alignStart="@+id/grid_recycler_view"
android:layout_marginBottom="-18dp"
android:layout_marginStart="67dp"
android:elevation="10dp"
android:background="@drawable/main_filter" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginBottom="36dp"
android:layout_marginLeft="27dp"
android:src="@drawable/hive" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="36dp"
android:layout_marginLeft="24dp"
android:layout_toEndOf="@+id/imageView2"
android:src="@drawable/sway" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="36dp"
android:layout_marginLeft="24dp"
android:layout_toEndOf="@+id/imageView3"
android:src="@drawable/colony" />
<ImageView
android:id="@+id/imageView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="36dp"
android:layout_marginLeft="24dp"
android:layout_toEndOf="@+id/imageView4"
android:src="@drawable/vault" />
<ImageView
android:id="@+id/imageView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginBottom="36dp"
android:layout_marginRight="28dp"
android:src="@drawable/camera" />
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBar"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:visibility="gone"/>
recycler_view_child_item
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="0dp">
<ImageView
android:id="@+id/thumbnail"
android:layout_width="84dp"
android:layout_height="150dp"
android:layout_margin="0dp"
android:padding="0dp" />
</LinearLayout>
答案 0 :(得分:0)
第一个阴影由RecyclerView投射,第二个阴影由第一个ImageView孩子投射到RecyclerView之上。两个阴影都很好看。也许你可以根据你突出显示不正确的图像部分?
答案 1 :(得分:0)
阴影不在顶部,而是在RecyclerView的后面。该阴影是可见的,因为您具有RecyclerView的透明背景。阴影在RecyclerView下渲染,但不是整个表面都被绘制,只是边缘周围的某些区域。
我不确定这可能是优化或副作用,但是我一直在观察这种“效果”。我想这是正常的和预期的。如果您将背景色设置为纯色,则会覆盖不好的部分。