当我通过AppTheme.NoActionBar将自动生成的android:theme应用于我的 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 呈现为顶部带有透明状态栏,该状态栏最终具有白色背景,并在其上方带有白色文本。如果设备正在充电,则这是唯一可见的符号。

android - 使用AppTheme.NoActionBar时,Android状态栏透明-LMLPHP

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的样式。听起来有点熟?

值-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和voila。这就是问题所在。如果您不希望为更多最新用户提供此样式,则只需删除样式行中的这一行。

值-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>

这是删除样式的结果:

android - 使用AppTheme.NoActionBar时,Android状态栏透明-LMLPHP

良好的不透明状态栏

10-08 14:55