Android之解决NestedScrollView嵌套RecyclerView部分手机返回到这个页面Recyclerview顶部,而不是页面NestedScrollView顶部

Posted chen.yu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之解决NestedScrollView嵌套RecyclerView部分手机返回到这个页面Recyclerview顶部,而不是页面NestedScrollView顶部相关的知识,希望对你有一定的参考价值。

1、问题

NestedScrollView嵌套Recyclerview部分手机返回到这个页面Recyclerview顶部,而不是页面NestedScrollView顶部

部分布局大致如下

		<androidx.core.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:focusableInTouchMode="true"
            android:descendantFocusability="blocksDescendants"
            android:fillViewport="true"
            app:layout_constraintBottom_toBottomOf="parent">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
                
                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/recentGameRv"
                    android:layout_width="match_parent&

以上是关于Android之解决NestedScrollView嵌套RecyclerView部分手机返回到这个页面Recyclerview顶部,而不是页面NestedScrollView顶部的主要内容,如果未能解决你的问题,请参考以下文章

Android - 问题解决之EditText自动获取焦点问题

ANDROID开发之问题积累及解决方案(不断更新)

转Android开发之ListView+EditText-要命的焦点和软键盘问题解决办法

如何解决之Android Studio的布局预览中文乱码

text Android的应用开发之Android7.1.1出现吐司崩溃问题的解决方案

Android 65K问题之Multidex原理分析及NoClassDefFoundError的解决方法