Java Android NestedScrollView在上下滚动时滞后

Java Android NestedScrollView在上下滚动时滞后,java,android,xml,nestedscrollview,Java,Android,Xml,Nestedscrollview,我创建了一个带有3个片段的viewpager,它位于一个坐标布局中。 在每个Viewpager中,您都可以找到包含某些内容的嵌套滚动视图。 但是,如果我上下滚动内容,它会滞后。 我测试了NestedScrollView,并将其替换为普通的ScrollView,结果非常平滑。该问题与nestedscrollview有关。 我希望能得到一些帮助。谢谢 <android.support.design.widget.CoordinatorLayout xmlns:android="http

我创建了一个带有3个片段的viewpager,它位于一个坐标布局中。
在每个Viewpager中,您都可以找到包含某些内容的嵌套滚动视图。
但是,如果我上下滚动内容,它会滞后。
我测试了NestedScrollView,并将其替换为普通的ScrollView,结果非常平滑。该问题与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>
阿米尔

请在代码中填入下面的一行

recyclerView.setNestedScrollingEnabled(false);

在java代码中的
LinearLayout
对象上使用此选项:

linearLayout.setNestedScrollingEnabled(false);
使用此代码

<?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"
        android:nestedScrollingEnabled="false"
        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>

这是我做的,很好用

你最需要的部分是:

<android.support.v4.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

我给你做了这个,你可以试试

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">
 <android.support.v4.widget.NestedScrollView
    android:id="@+id/bottom_sheet"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="true"
        app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<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>

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

android:layout\u width=“匹配父项”
android:layout\u height=“包装内容”
android:orientation=“垂直”
android:padding=“16dp”>

我发现:以下类无法实例化:-android.support.v4.widget.nestedScrollView仍然是相同的消息无法获取错误。我们只在xml中添加一个滚动视图属性,对吗?请确保在我提到的编辑之前它工作正常。查看图像请共享图像没有recyclerview。很抱歉,如果是循环视图,请使用您的布局
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">
 <android.support.v4.widget.NestedScrollView
    android:id="@+id/bottom_sheet"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="true"
        app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<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>

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