如何在状态栏中显示背景? [复制]
Posted
技术标签:
【中文标题】如何在状态栏中显示背景? [复制]【英文标题】:How to display background in status bar? [duplicate] 【发布时间】:2018-07-18 23:33:11 【问题描述】:我希望我的应用看起来像这样:
我有什么:
任何帮助将不胜感激!
【问题讨论】:
github.com/rohitksingh/Notely/commit/… 看看它是否对你有帮助。有帮助就点个赞吧。 【参考方案1】:您需要在 style.xml 中更改颜色原色和原色深色,您的应用主题颜色代码是在其中编写的
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorPrimary</item>
【讨论】:
感谢您的回复,但我已应用 PNG 图像作为背景,并且其中具有渐变效果,因此看起来不干净。【参考方案2】:从 colorPrimaryDark 更改为 colorPrimary 到 style.xml 文件中的所有项目。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorPrimary</item>
</style>
【讨论】:
以上是关于如何在状态栏中显示背景? [复制]的主要内容,如果未能解决你的问题,请参考以下文章