gpt4 book ai didi

设置 layout_scrollFlags 时 Android 工具栏不隐藏

转载 作者:行者123 更新时间:2023-11-29 17:28:23 24 4
gpt4 key购买 nike

我正在测试 android.support.design 库,但是我有这个问题。请先看下面的图片。

点击链接查看图片:scroll state image

点击链接查看图片:not scroll state image

你可以看到,工具栏并没有隐藏在状态栏的后面。我的布局如下:

<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=".SettingActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

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

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

<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/action_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="10dp"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>

有人可以给我一些建议吗?

最佳答案

终于,我解决了这个问题。我的 Material 测试项目是基于 Android Studio IDE 默认设置创建的。所以我检查了 values-v21/styles.xml 文件。它有一个默认项 <item name="android:statusBarColor">@android:color/transparent</item> .删除项目后它工作正常。

关于设置 layout_scrollFlags 时 Android 工具栏不隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33887820/

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