gpt4 book ai didi

使用AppTheme.NoActionBar时Android状态栏透明

转载 作者:可可西里 更新时间:2023-11-01 18:49:55 27 4
gpt4 key购买 nike

当我通过 android:theme 将自动生成的 AppTheme.NoActionBar 应用到我的 Activity 时,如下所示:

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage">

<application
...
android:theme="@style/AppTheme">

<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar" />

</application>

</manifest>

我的 MainActivity 呈现为顶部有一个透明状态栏,最终有一个白色背景,上面有白色文本。如果设备正在充电,那是唯一可以看到的符号。

Transparent ActionBar

来自 AppTheme.NoActionBar 的透明 ActionBar

这是我的values/styles.xml:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>

</resources>

在第二种样式中,您可以看到 AppTheme.NoActionBar,它默认继承 AppTheme,但是两种样式中都没有指定状态栏应该是透明的。

最佳答案

如果您遇到此问题,很可能有一个名为 values-v21 的文件夹,其中有一个名为 styles.xml 的文件。此文件为使用 API 21+ (Android 5.0+) 的设备定义样式。该文件也很可能包含以下名为 AppTheme.NoActionBar 的样式。听起来很熟悉?

values-v21/styles.xml:

<resources>
<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>
</resources>

AppTheme.NoActionBar 是在问题中提供的 values/styles.xml 中定义的,它仍然有效,但是该文件仅用于设备 根据 API 21。如果您查看代码,只需在最后看到透明这个词,就可以立即确定问题所在。向左一点,我们看到 statusBarColor 瞧。这就是问题所在。如果您不想为更多最新用户提供此样式,您可以简单地删除那行样式。

values-v21/styles.xml:

<resources>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
</style>
</resources>

这是删除该样式的结果:

Fixed result

不错的不透明状态栏

关于使用AppTheme.NoActionBar时Android状态栏透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37616517/

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