Здесь макет действия содержит фрагмент контейнера и bottomNavigationView
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:background="@android:color/transparent"
android:layout_height="match_parent" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="@drawable/bottom_background"
android:foreground="?attr/selectableItemBackground"
app:itemIconSize="@dimen/iconsize"
app:labelVisibilityMode="unlabeled"
app:itemIconTint="@android:color/white"
app:itemTextColor="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:menu="@menu/menu_navigation" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
А вот макет фрагмента, который содержит другой макет координатора с представлением рециркулятора
<FrameLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/content_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:orientation="vertical"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<include
layout="@layout/toolbar" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/categoryItemGridRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingRight="1dp"
app:categoryItemGrid="@{categoryPresenter.itemImageList}"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:listitem="@layout/item_fragment_category_item_grid" />
<include
android:id="@+id/constraintLayoutGenericProgressBar"
bind:categoryPresenter2="@{categoryPresenter}"
layout="@layout/layout_generic_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</FrameLayout>
Я установил пользовательское поведение для bottomNavigationView, чтобы скрывать его при прокрутке вниз и наоборот. Это работает, когда у меня нет appBarLayout во фрагменте. Когда я добавляю appBarLayout следующим образом, поведение перестает работать. Нижний вид навигации не скрывается при прокрутке.