gpt4 book ai didi

android - 工具栏未隐藏在 RecyclerView 滚动条上

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:07:50 26 4
gpt4 key购买 nike

我正在尝试根据 RecyclerView 的滚动隐藏和显示我的应用程序中的 Toolbar。这个 gif 显示了我正在努力实现的目标。

GIF

我正在关注 this tutorial而没有得到我正在寻找的结果。这是我的 Activity 布局:

<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:fitsSystemWindows="true">

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="7dp">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<include layout="@layout/toolbar" />

</android.support.design.widget.AppBarLayout>

<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF" />

<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/header"
app:menu="@menu/drawer" />

</android.support.design.widget.CoordinatorLayout>

And here's the Toolbar layout:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@color/ColorPrimary"
app:layout_scrollFlags="scroll|enterAlways" />

当我运行这段代码时,工具栏 完全消失了。怎么了?

最佳答案

如果您的 RecyclerView 位于 fragment 内部,请尝试将以下代码放入 fragment 布局的 Root View 中:app:layout_behavior="@string/appbar_scrolling_view_behavior"。包含的 View 必须是 CoordinatorLayout

的直接子级

关于android - 工具栏未隐藏在 RecyclerView 滚动条上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31218254/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com