我想在一個CoordinatorLayout
同時使用AppBarLayout
和BottomNavigationLayout
,我有隱藏BottomNavigationLayout
所要求的material guideline困難。顯示/隱藏BottomNavigationView與AppBarLayout
我的意思是這樣的:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_insetEdge="top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_nav"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="bottom"
app:menu="@menu/menu_bottom_navigation"/>
<FrameLayout
android:id="@+id/content_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
正如你所看到的,我也有這是我們用來包含具有實際內容片段的FrameLayout
。目前,BottomNavigationView
沒有默認/內置行爲 - 既不適用於視圖本身,也不適用於其兄弟姐妹。現有的appbar_scrolling_view_behavior
與appbar協同處理內容視圖,但忽略其他兄弟。
我正在尋找解決方案來隱藏並顯示滾動條上的appbar和底部導航視圖。