Android隐藏后如何显示工具栏(通过在RecyclerView中向下滚动)

问题描述 投票:0回答:1

我有BottomNavigationView,其中包含三个片段。第一个有一个RecyclerView,我实现了滚动此RecyclerView后隐藏工具栏的功能,并且可以正常工作。当我更改片段时,我想再次显示它(actionbar)-但是actionbar.isShowing()返回true,而actionbar.show()不起作用。也许有人有主意?

activity_main.xml

<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"
     android:background="@android:color/white"
     tools:context=".main.MainActivity">

<com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/mainToolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|enterAlways|snap"
        app:title="@string/app_name"/>

</com.google.android.material.appbar.AppBarLayout>

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/mainNav"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:background="@android:color/white"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    app:menu="@menu/user_tabs_menu" />

<FrameLayout
    android:id="@+id/mainFrameLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>
android kotlin android-toolbar bottomnavigationview
1个回答
0
投票

您能否向我们展示一些有关如何使工具栏消失的代码?

© www.soinside.com 2019 - 2024. All rights reserved.