gpt4 book ai didi

java - 如果我向下滚动 fragment 内的recyclerView,如何自动隐藏工具栏?

转载 作者:行者123 更新时间:2023-12-01 08:53:50 25 4
gpt4 key购买 nike

就像我的标题所说,当我使用协调器布局向下滚动 fragment 内的 RecycledView 时,我试图动态隐藏我的工具栏。但它不起作用。我认为这是因为我的 XML 文件有问题。如果有人帮助我,我将非常感激。

这是我的 fragment XML 文件,该 fragment 包含在选项卡布局内:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.jinyu.jiaodian.MainActivity"
>

<android.support.v7.widget.RecyclerView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/upload_a_word"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_input_add"
android:layout_alignParentRight="true" />

这是我的 app_bar 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.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:fitsSystemWindows="true"
tools:context="com.example.jinyu.jiaodian.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
>

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay" />

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

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

最佳答案

app:layout_behavior="@string/appbar_scrolling_view_behavior" 放在 include 上,而不是放在 AppBarLayout 上。该行为是将嵌套滚动事件传播到您的 AppBarLayout

关于java - 如果我向下滚动 fragment 内的recyclerView,如何自动隐藏工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42183897/

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