Androidx Recycler View中的滚动问题

时间:2019-01-10 18:19:43

标签: java kotlin android-recyclerview androidx

我正在使用androidx.recyclerview.widget.RecyclerView显示项目列表。 Recyclerview上方还有其他视图,但是问题是,每当我向下滚动RecylerView时,它也会滚动其他视图,该视图也定义在RecyclerView的顶部,而不是{{ 1}}项。但是我的要求是,每当我向下滚动RecylerView时,都不应滚动在其顶部定义的其他视图,而是滚动到在RecyclerView顶部定义的所有视图之下。我想实现的另一件事是Recyclerview

中每个项目之间的差距

下面是我的XML布局

RecyclerView

这是代码

<?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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@color/colorPrimary"
    android:orientation="vertical">

    <include layout="@layout/common_text_header"/>

    <include layout="@layout/status_list_item"
        android:layout_marginStart="@dimen/spacing_double2"
        android:layout_marginEnd="@dimen/spacing_double2"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" />

    <include layout="@layout/common_text_header"/>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerViewStatusList"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
        tools:itemCount="10"
        tools:listitem="@layout/status_list_item" />
</LinearLayout>

0 个答案:

没有答案