状态栏上的图像叠加

时间:2015-06-23 15:09:39

标签: android overlay statusbar

我在状态栏上添加了主要深色,使其成为工具栏的颜色。

Coloured Status Bar

但我有一个向上滑动的面板,顶部有一个图像(屏幕截图),我需要将其覆盖到状态栏上。它目前就像下面的截图。 Should be overlaying the image

1 个答案:

答案 0 :(得分:2)

将以下内容放在您的AppTheme样式的values-v21文件夹(styles.xml)中:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
</style>

默认情况下,状态栏颜色由&#34; colorPrimaryDark&#34;确定。将以上主题应用于androidManifest.xml中的特定活动。 (父主题可以是任何东西)