Android 如何在隐藏后显示工具栏(通过在 RecyclerView 中向下滚动)
Android how to show toolbar after hiding (by scrolling down in RecyclerView)
我有 BottomNavigationView 三个片段。第一个有一个 RecyclerView 并且我实现了在滚动这个 RecyclerView 后隐藏工具栏并且它有效。当我更改片段时,我想再次显示它(操作栏)-但是 actionbar.isShowing() returns 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>
能否向我们展示一些有关如何使工具栏消失的代码?
当您更改片段时,您应该调用 AppBarLayout.setExpanded(true)
我有 BottomNavigationView 三个片段。第一个有一个 RecyclerView 并且我实现了在滚动这个 RecyclerView 后隐藏工具栏并且它有效。当我更改片段时,我想再次显示它(操作栏)-但是 actionbar.isShowing() returns 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>
能否向我们展示一些有关如何使工具栏消失的代码?
当您更改片段时,您应该调用 AppBarLayout.setExpanded(true)