2017-04-20 88 views
0

我有一個佈局,其頂部有一個工具欄,後面跟着2個工具欄大小的欄以及下面的列表視圖。當某人在列表視圖上滾動時,工具欄下的2個欄應向上滾動並在工具欄下消失。Android CoordinatorLayout,ListView和固定工具欄

我試着把這個應用程序:layout_scrollFlags =「scroll | enterAlways」只在這些欄上,而不是在工具欄上,但是他們沒有響應滾動事件。 如果我在工具欄上放置了相同的scrollFlags,它們都會響應,但我希望工具欄始終顯示。 如果我移動工具欄上方的兩個橫條,它將起作用,只有兩個橫條響應,但現在工具欄位於橫條下方,這不是我想要的顯示。

+0

發佈您的佈局xml代碼以獲得快速解決方案。 – FAT

回答

0

嘗試將要保留的工具欄放在應用條下方的頂部。你的AppBar包含你真正想要滾動的視圖,而另一個會在它下面。確保讓您的應用欄具有0dp的海拔高度,否則它將顯示在其上方(或將工具欄的高度更改爲高於應用欄)。還要將您希望保留在頂部的酒吧的高度添加爲應用程序欄的頂部邊距,以便在您查看的下方開始。

<android.support.design.widget.CoordinatorLayout 
    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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true">  

    <!--Toolbars you want to move--> 
    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay" 
     android:layout_marginTop="?attr/actionBarSize" 
     app:elevation="0dp"> 

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

     <android.support.v7.widget.Toolbar 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       android:background="@android:color/holo_orange_light" 
       android:layout_gravity="bottom" 
       app:layout_scrollFlags="scroll|enterAlways" 
       app:elevation="2dp" 
       /> 

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

    <!--Toolbar you don't want to move--> 
    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:layout_gravity="top" 
     android:background="@color/wallet_bright_foreground_holo_light" 
     app:popupTheme="@style/AppTheme.PopupOverlay" 
     /> 

    <!--Your content here --> 
    <FrameLayout 
     android:id="@+id/frameLayout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 
     <include layout="@layout/item_list" /> 
    </FrameLayout> 
</android.support.design.widget.CoordinatorLayout> 
相關問題