我有一個帶有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」)不起作用。
如果你使用'NestedScrollView'包'RecyclerView'。回收功能將不起作用。它會使用更多的內存和滯後。 – wonsuc