为什么状态栏出现阴影?

Why Status bar is appearing with shadow?

我的应用程序的状态栏看起来不那么清晰或出现一些阴影。

这是我的状态栏的样子:

它应该是这样的:

为什么看起来不像这样?

style.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>
        <item name="windowActionBarOverlay">false</item>
        <item name="windowActionBar">false</item>
        <item name="android:windowBackground">@android:color/white</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>

这有什么问题?请帮忙..

删除这一行

<item name="android:statusBarColor">@android:color/transparent</item>

来自你的values-v21/styles.xml

如果您在 android 5 或更高版本中,您可以通过以下代码将操作栏的高度设置为 0

getSupportActionBar().setElevation(0);

如果不是 5 或更高,则在您的主题中添加以下样式

<style name="MyAppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
</style>