2015-12-28 66 views
1

我不知道如何實現這個..我想用:NestedScrollView和RecyclerView問題,如何區分它們?

  1. 摺疊式工具
  2. 「正常」 的佈局(NestedScrollView)
  3. RecyclerView
  4. 導航由NavigationDrawer (所以佈局一起在我的activity_main.xml中)

當我嘗試使用RecyclerView時出現問題 - 因爲的NestedScrollView(是的,規則「不要放置多個可滾動在一起」是真實的)...

但如何實現這一目標?是否有可能以某種方式保持佈局分離?

信息:我正在替換FrameLayout中的應用程序的內容(請參閱中間部分)。

這是一個適當的解決方案插入多個NestedScrollViews(在每個片段之一,應該可滾動)?

這是我的主要佈局:

<?xml version="1.0" encoding="utf-8"?> 

<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:fitsSystemWindows="false" 
    android:background="@color/main_frame" 
    > 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbar" 
     android:layout_width="match_parent" 
     android:layout_height="192dp" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
     > 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/collapsing_toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fitsSystemWindows="true" 
      app:contentScrim="@color/colorPrimary" 
      app:expandedTitleMarginBottom="32dp" 
      app:expandedTitleMarginEnd="64dp" 
      app:expandedTitleMarginStart="48dp" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed" 
      > 

      <ImageView 
       android:id="@+id/header" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:background="@color/colorPrimary" 
       android:fitsSystemWindows="true" 
       android:scaleType="centerCrop" 
       app:layout_collapseMode="parallax" 
       /> 

      <include 
       android:id="@+id/toolbar" 
       layout="@layout/toolbar_overlay" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin" 
       /> 

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

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

    <android.support.v4.widget.NestedScrollView 
     android:id="@+id/nestedScrollView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fillViewport="true" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     > 

     <FrameLayout 
      android:id="@+id/main_frame" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_below="@+id/toolbar" 
      > 
     </FrameLayout> 

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

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

<android.support.design.widget.NavigationView 
    android:id="@+id/navigation_view" 
    android:layout_height="match_parent" 
    android:layout_width="wrap_content" 
    android:layout_gravity="start" 
    android:background="@color/colorPrimaryNavDrawer" 
    app:headerLayout="@layout/nav_drawer_header" 
    app:menu="@menu/nav_drawer_items" 
    /> 

在此先感謝。

回答

1

實現此目的的最佳方法是僅使用RecyclerView以及處理不同視圖類型的適配器。 對於第一個適配器位置,列表項目將是您在NestedScrollView中的固定內容的一次,對於其他位置,您要使用的是您當前解決方案中的RecyclerView項目。

相關問題