0

我有一個帶有CoordinatorLayout和FrameLayout的片段來填充其他片段。其中一個片段包含一個RecyclerView。我的問題是,RecyclerView如何與CoordinatorLayout協同工作,每個文件都在一個文件中。我試圖把一個NestedScrollView作爲Fragment父項,但是當我這樣做時,適配器RecyclerView的「onBindViewHolder」被所有元素調用。CoordinatorLayout與RecyclerView在不同的片段

主要碎片包含CoordinatorLayout

<android.support.design.widget.CoordinatorLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    android:background="@color/background"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbar" 
     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" 
      android:minHeight="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light" 
      android:elevation="0dp" 
      app:layout_scrollFlags="scroll|enterAlwaysCollapsed"/> 

     <android.support.design.widget.TabLayout 
      android:id="@+id/tab_layout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/toolbar" 
      android:background="@color/colorTab" 
      android:minHeight="?attr/actionBarSize" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> 

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

    <FrameLayout 
     android:id="@+id/container_restaurant" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"/> 

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

片段與RecyclerView

<android.support.v4.widget.NestedScrollView 
    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:fillViewport="true" 
    android:background="@color/background" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/my_list" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 

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

這樣滾動的作品,但「onBindViewHolder」之稱列出的所有項目,包括那些誰不「可見」。如果我放置LinearLayout而不是NestedScrollView,則「onBindViewHolder」的工作方式正確,但帶有CoordinatorLayout的滾動行爲(「@ string/appbar_scrolling_view_behavior」)不起作用。

+0

如果你使用'NestedScrollView'包'RecyclerView'。回收功能將不起作用。它會使用更多的內存和滯後。 – wonsuc

回答

0

ScrollView繪製所有它的子元素。這意味着當您的RecyclerviewScrollview中時,它會丟失它的回收利用屬性。這就是爲什麼onBindViewHolder被稱爲所有項目。這也是不正確的行爲。

試着保持父爲FrameLayout與滾動行爲( 「@字符串/ appbar_scrolling_view_behavior」)

+0

我明白,但通過FrameLayout更改NestedScrollView不適用於滾動行爲。它適用於FrameLayout與CoordinatorLayout相同的文件。 –

+0

嘗試將FrameLayout(它存在於coordinatorlayout中)的高度更改爲'match_parent'。 – jitinsharma

+0

沒有工作。我認爲問題是NestedScrollView,每當我使用它所有的項目加載到onBindViewHolder。我試圖設置NestedScrollView的高度不起作用。還有另一個佈局可以用來代替NestedScrollView,並且具有滾動行爲? –

相關問題