关于含RecyclerView的fragment来回切换时页面自动滑动到底部的解决方法

Posted 不不不不不好听

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于含RecyclerView的fragment来回切换时页面自动滑动到底部的解决方法相关的知识,希望对你有一定的参考价值。

原因:

在fragment中来回切换时RecyclerView获得了焦点,而RecyclerView的 focusableOnTouchMode属性默认是true,所以在切换时RecyclerView自动获得焦点就滚动到了底部。

解决办法:

将RecyclerView上面的控件的设置android:focusableInTouchMode="true"(若无上方控件建议加一个不影响布局的View),如:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical">
 6     <View
 7         android:layout_width="match_parent"
 8         android:layout_height="2px"
 9         android:background="#bfbfbf"
10         android:focusable="true"
11         android:focusableInTouchMode="true"/>
12     <android.support.v7.widget.RecyclerView
13         android:layout_width="match_parent"
14         android:layout_height="match_parent"
15         android:paddingRight="8dp"
16         android:paddingLeft="8dp"
17         android:fadingEdge="none">
18     </android.support.v7.widget.RecyclerView>
19 </LinearLayout>

 

以上是关于关于含RecyclerView的fragment来回切换时页面自动滑动到底部的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

带有 RecyclerView 的 DialogFragment 比带有 Recyclerview 的 Fragment 慢

在 Fragment 中显示 RecyclerView

Fragment、Volley 和 RecyclerView

单击不在 Fragment 内的 RecyclerView 项目上工作

java.lang.IllegalStateException:RecyclerView 在 Fragment 中没有 LayoutManager

在 Fragment 中使用 RecyclerView 时出现 Kotlin 错误的 Android