在活动中,我有TabLayout
和FrameLayout
用于加载片段。片段包含RecyclerView
。它只适用于第一次。但是当我更改标签页并返回上一个标签页时,RecyclerView
无法完全滚动。
主要活动
<android.support.v4.widget.NestedScrollView
android:fillViewport="true"
android:layout_height="match_parent"
android:layout_width="match_parent">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<android.support.design.widget.TabLayout
android:id="@+id/tabMain"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
<FrameLayout
android:id="@+id/containerMain"
android:layout_height="match_parent"
android:layout_width="match_parent" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
片段
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvMedia"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false" />
</LinearLayout>
答案 0 :(得分:0)
recyclerView本身具有平滑的滚动,但是当我们需要将recyclerView放在任何scrollView中时,它将无法像下面那样工作:
布局XML
<?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">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
</LinearLayout>
解决方案是我们需要使用nestedScrollView而不是如下所示的scrollview
<?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.support.v4.widget.NestedScrollView
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</LinearLayout>
当我们使用nestedScrollView并将recyclerView放在nestedScrollView中时,会发生问题,它会根据手势以各种速度滚动。滚动功能将不流畅。
因此,要解决此问题,设置适配器后要做的就是添加此行
ViewCompat.setNestedScrollingEnabled(recyclerView, false);
这不是一个好的解决方案。将RecyclerView放在NestedScrollView内会导致呈现RecyclerView适配器的所有元素,从而占用大量内存。在大多数内存较少的设备中,这可能是如此之慢。
此方法还可能导致禁用需求滚动,这将禁用视图回收,因此所有项目将立即初始化。在包含1000个项目的列表中。这会使应用程序滞后。如果您使用分页,当用户在列表上向下滚动时加载了固定数量的项目,则可以避免这种情况。
了解有关分页的更多信息。
Pagination with RecyclerView – Etienne Lawlor – Medium
Android RecyclerView Pagination with Paging Library using MVVM ...