我正在使用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>