gpt4 book ai didi

java - Android NestedScrollView 上下滚动时滞后

转载 作者:行者123 更新时间:2023-12-02 03:00:59 25 4
gpt4 key购买 nike

我在 Coordinatorlayout 中创建了一个包含 3 个 fragment 的 viewpager。
在每个 Viewpager 中,您都可以找到一个包含一些内容的 NestedScrollView。
但如果我上下滚动内容就会出现滞后。
我测试了一下,用普通的ScrollView替换了NestedScrollView,很顺利。问题出在nestedscrollview上。
我希望得到一些帮助。谢谢。

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay"/>

<android.support.design.widget.TabLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
app:tabGravity="fill"
app:tabIndicatorColor="@color/black"
app:tabIndicatorHeight="1dp"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/white"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabTextColor="@color/black"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

<include
android:id="@+id/floating_action_button"
layout="@layout/floating_action_button_main"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</android.support.design.widget.CoordinatorLayout>

在viewpager中您可以找到:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
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:id="@+id/fragment_first"
style="@style/NestedScrollBarStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_scrollFlags="scroll|enterAlways"
tools:context="com.amirkhan.template1.MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">

<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="111111111111111111111111111"/>

<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="111111111111111111111111111"/>

<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="111111111111111111111111111"/>

<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="111111111111111111111111111"/>

<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:text="111111111111111111111111111"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sadsff"/>
</LinearLayout>

</android.support.v4.widget.NestedScrollView>

after adding android:nestedScrollingEnabled="false"

最佳答案

H阿米尔,

请将以下行放入您的代码中

recyclerView.setNestedScrollingEnabled(false);

关于java - Android NestedScrollView 上下滚动时滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42366839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com