2017-02-21 166 views
0

我在Coordinatorlayout中創建了一個帶有3片段的viewpager。
在每個Viewpager中,您可以找到帶有某些內容的NestedScrollView。
但是,如果我滾動內容上下拖後腿。
我測試並用正常的ScrollView替換了NestedScrollView,它非常流暢。這個問題與nestedscrollview有關。
我希望得到一些幫助。謝謝。Android 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"

回答

1

^h阿米爾,

請把下面的一行代碼中的

recyclerView.setNestedScrollingEnabled(false); 
+0

沒有recyclerview。 –

+0

對不起,在回收視圖使用您的佈局 –

0

使用此同您的java代碼中的LinearLaout對象:

linearLayout.setNestedScrollingEnabled(false);

0

使用此代碼

<?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> 
+0

我得到這個:以下類無法實例化: - android.support.v4.widget.NestedScrollView –

+0

仍然是相同的消息 –

+0

有沒有辦法得到錯誤。我們只在xml右邊添加一個滾動視圖屬性?請確保它在我提到的編輯之前工作。 – EKN

0

這是一個我做和工作正常。

的一部分,美大多需要的是:

<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>