如何在状态栏中显示背景?

时间:2018-02-08 11:49:03

标签: java android

我希望我的应用看起来像这样:

enter image description here

我拥有的: enter image description here

任何帮助都将深表感谢!

2 个答案:

答案 0 :(得分:2)

您需要在找到应用主题颜色代码的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>

答案 1 :(得分:1)

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