У меня есть макет MainActivity с AppBarLayout с TabLayout и ViewPager. Я не могу скрыть панель инструментов при прокрутке макета фрагмента, добавленного в мой пейджер просмотра. Но я могу скрыть панель инструментов, которую я прокручиваю через AppBarLayout.
activity_main. xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?android:windowBackground">
<com.google.android.material.appbar.AppBarLayout
android:background="?android:windowBackground"
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/toolbar" />
<com.google.android.material.tabs.TabLayout
android:background="?android:windowBackground"
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorColor="?colorAccent"
app:tabIndicatorFullWidth="false"
app:tabIndicatorHeight="3dp"
app:tabMode="scrollable"
app:tabBackground="?android:windowBackground"
app:tabSelectedTextColor="?colorAccent"
app:tabTextAppearance="@style/TabTextAppearance.Timber" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>