Как скрыть панель действий при прокрутке через RecyclerView в Android. Вот код, который я использую:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapp.activities.Profile_Page">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="87dp"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toTopOf="@+id/notifications_view"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:fontFamily="@font/roboto_medium"
android:text="Notifications"
android:textAlignment="center"
android:textColor="#FFFFFF"
android:textSize="27sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"></TextView>
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="87dp"
android:padding="10dp"
android:id="@+id/notifications_view"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
></androidx.recyclerview.widget.RecyclerView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Чтобы инициализировать ActionBar, я добавил следующий код в файл Java:
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setElevation(0);
При прокрутке страницы Какие способы, с помощью которых я могу скрыть панель действий? Я использовал макет «Constraint», чтобы отображать заголовок «Действия» по-своему и чтобы он выглядел красиво.
Когда пользователь прокручивает, панель действий и ConstraintLayout должны скрываться.