gpt4 book ai didi

tabs - 尽管实现了所有必需的参数,但 CoordinatorLayout 不会在滚动时隐藏工具栏

转载 作者:行者123 更新时间:2023-12-04 12:06:38 26 4
gpt4 key购买 nike

这是我的设置,我正在运行 抽屉布局 ,里面有一个 CoordinatorLayout 包含一个 AppBarLayout 和一个nestedscrollview .我试图让nestedscrollview正常滚动,工具栏在向下滚动时隐藏并在向上滚动时重新显示。附件是我的 XML 代码。将不胜感激任何帮助..已阅读所有相关问题并实现了他们的答案,但没有任何成功。

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout_admin"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.CoordinatorLayout
android:id="@+id/admincoordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<include
android:id="@+id/app_bar"
layout="@layout/app_bar"
app:layout_scrollFlags="scroll|enterAlways" />

<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView
android:id="@+id/adminrelScroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

<android.support.design.widget.NavigationView
android:id="@+id/nav_drawer"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/menu_drawer" />

最佳答案

我遇到了同样的问题一个星期并尝试了几乎所有方法来解决它。
但是我设法解决了这个问题。

哪里有类似...

<include
android:id="@+id/app_bar"
layout="@layout/app_bar"
app:layout_scrollFlags="scroll|enterAlways" />

...用您的 app_bar.xml 中的任何内容替换它布局。例如:
<android.support.v7.widget.Toolbar
android:id="@+id/main_toolbar"
style="@style/AppTheme.Toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:layout_scrollFlags="scroll|enterAlways"/>

似乎由于某种原因, 滚动 CoordinatorLayout使用 <include> 时不起作用标签 .

关于tabs - 尽管实现了所有必需的参数,但 CoordinatorLayout 不会在滚动时隐藏工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31007652/

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