我正在为Android应用开发一个无尽的可滚动列表,使用RecyclerView
视图组和OnScrollListener
我在用户滚动到{{1}的最后一项后添加项目}。
现在想要在项目后面的中间添加一条黑线作为回收者视图。
如您所见,这些物品可以有不同的高度。
什么是最好(也是最高效)的方式来实现这个目标?
答案 0 :(得分:1)
您可以考虑使用如下布局。
<?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>