Я тоже столкнулся с той же проблемой, это связано с вложенной прокруткой. После долгих поисков я узнал, что макет координатора должен использоваться как родительский макет. Панель приложения также должна быть добавлена, и после этого она должна работать отлично. Это решило проблему.
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinateLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/fragmentAppBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
app:elevation="0dp" />
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvMemberList"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/holder_member_item" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Как я вижу, у вас также есть панель приложения, так что макет пользовательского ограничения и включает панель приложения и координатор внутри, так что иерархия должна быть как
ConstraintLayout
AppBar
CoordinatorLayout