Android ScrollView在滚动中调用scrollTo(0,0)回到顶部无效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ScrollView在滚动中调用scrollTo(0,0)回到顶部无效相关的知识,希望对你有一定的参考价值。
参考技术A 问题场景描述:在一个协议页面里面 ScrollView嵌套webview来展示服务协议内容,当用户操作刷新功能后,ScrollView自动回滚到服务协议顶部, 会发现当webview已经加载完服务协议页面后, 如果此时页面处于惯性滚动中,滚动效果还没有结束的时候,调用scrollTo(0,0)作用失效,无法回到服务协议页面顶部。原因分析:scrollTo()被惯性滚动效果覆盖,不生效
布局参考:
解决方案:
在scrollTo(0,0)之后加上以下语句调用,打断ScrollView的惯性滚动:
scrollView.smoothScrollTo(0, 0)
在 ScrollView 中使用 ListView 滚动整个视图
【中文标题】在 ScrollView 中使用 ListView 滚动整个视图【英文标题】:Scrolling the whole view with a ListView insida a ScrollView 【发布时间】:2021-10-28 04:25:49 【问题描述】:我正在制作应用程序,但找不到任何解决方案。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".MainActivity"
android:background="@color/DarkGray"
android:orientation="vertical">
<androidx.core.widget.NestedScrollView
android:layout_
android:layout_
android:fillViewport="true">
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical">
<LinearLayout
android:layout_
android:layout_
android:background="@color/BackGroundColor"
android:orientation="horizontal"
android:paddingTop="4dp"
android:paddingBottom="4dp">
<TextView
android:layout_
android:layout_
android:layout_weight="1"
android:textAlignment="center"
android:textAllCaps="true"
android:textColor="@color/SecondaryTextColor"
android:textSize="18sp"
android:textStyle="bold" />
<TextView
android:layout_
android:layout_
android:layout_weight="1"
android:textAlignment="center"
android:textAllCaps="true"
android:textColor="@color/SecondaryTextColor"
android:textSize="18sp"
android:textStyle="bold" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:layout_
android:layout_
android:background="@color/BlueGray"
android:nestedScrollingEnabled="false"/>
<TextView
android:layout_
android:layout_
android:background="@color/BackGroundColor"
android:padding="4dp"
android:textAlignment="center"
android:textColor="@color/PrimaryTextColor"
android:textSize="22sp" />
<ListView
android:id="@+id/eventsListView"
android:layout_
android:layout_
android:padding="2dp"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
我想要实现的是在我的 ListView 中添加 CardViews,并且不仅可以滚动 ListView,还可以滚动整个视图。我之前尝试过 RecyclerView,但这对我也不起作用。
这是我的想法:
并滚动整个内容,而不仅仅是 ListView。
【问题讨论】:
第 2 课:不要将 ListView 放在 ScrollView 中。 如果不是我可以使用的 RecyclerView 或 ListView,我应该使用什么来存储多个用户添加的 CardView? 你应该使用 NestedScrollView。 【参考方案1】:你需要使用 NestedScrollView。
NestedScrollView 与 ScrollView 类似,但它支持在新旧版本的 Android 上同时充当嵌套滚动父项和子项。默认启用嵌套滚动。
请参考NestedScrollView documentation
不要忘记将recyclerView.setNestedScrollingEnabled(false);
添加到您的 RecyclerView。
【讨论】:
以上是关于Android ScrollView在滚动中调用scrollTo(0,0)回到顶部无效的主要内容,如果未能解决你的问题,请参考以下文章
如何检测滚动嵌套scrollview android在底部的位置?