2016-05-15 59 views
0

是否有可能在CoordinatorLayout中有兩個工具欄,頂部是底部一個工具欄,並且兩個工具欄都在滾動?CoordinatorLayout中的兩個工具欄

可惜,這是行不通的:

<android.support.design.widget.CoordinatorLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      app:layout_scrollFlags="scroll|enterAlways"/> 

     <android.support.v4.widget.SwipeRefreshLayout 
      android:id="@+id/layout_swipe_refresh" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

      <android.support.v7.widget.RecyclerView 
       android:id="@+id/recycler_view" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:background="?attr/background"/> 

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

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar_bottom" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:layout_gravity="bottom" 
      app:layout_scrollFlags="scroll|enterAlways"/> 

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

回答

相關問題