gpt4 book ai didi

Android 状态栏与协调器布局一起向上滚动,使状态图标与工具栏标题重叠

转载 作者:IT老高 更新时间:2023-10-28 23:20:14 26 4
gpt4 key购买 nike

我在使用包含 AppBarLayout(包含 ToolBar 和 TabLayout)和 ViewPager(包含 fragment )作为子项的协调器布局时遇到问题。我希望在向下滚动时隐藏顶栏,并在向上滚动时显示。但是,当我向下滚动时,状态栏也会向上滚动,将顶部栏留在状态图标下方,被它们重叠。

我尝试将 android:fitsSystemWindows="true"添加到 AppBarLayout 和 ViewPager 但没有任何改变。

下面使用的代码和显示两种状态的快照:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
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"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

<android.support.design.widget.TabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="fixed"/>

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

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

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

Status Bar without scroll applied

Status Bar with scroll applied

最佳答案

查看 Activity 的主题,如果主题类似于@style/AppTheme.NoActionBar 或一个没有ActionBar 的主题,请尝试添加颜色,您必须具有类似这样的样式(v21):

<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>

改成:

<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>

关于Android 状态栏与协调器布局一起向上滚动,使状态图标与工具栏标题重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33989984/

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