代码之家  ›  专栏  ›  技术社区  ›  Tobias von Falkenhayn

如何为无休止的滚动回收视图绘制背景

  •  2
  • Tobias von Falkenhayn  · 技术社区  · 6 年前

    我正在使用 RecyclerView 视图组和 OnScrollListener 其中,我在用户滚动到 回收视图

    现在,a希望在项目后面的中间添加一条黑线,作为一种回收视图。

    enter image description here

    如您所见,这些项目可以具有不同的高度。

    什么是最好(也是最有效)的归档方式?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Reaz Murshed    6 年前

    您可以考虑使用如下布局。

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/your_background">
    
        <android.support.v7.widget.RecyclerView
            android:id="@+id/your_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/transparent" />
    </RelativeLayout>