更改状态栏颜色 - 导航视图

时间:2015-10-06 19:09:58

标签: android navigation-drawer material-design

我正在使用设计库中的NavigationView。我想尝试以下方法:

  1. 在NavigationView上更改状态栏颜色。
  2. 更新NavigationView以从状态栏开始。
  3. (两者都是不同的场景)

    我怎么能做到这一点?

    我已尝试使用statusBarColorcolorPrimaryDark属性,但它不适用于NavigationView上方的状态栏

1 个答案:

答案 0 :(得分:1)

您应该将它添加到styles.xml中,例如:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your colors here. -->
    <item name="colorPrimary">#3F5662</item> 
    <item name="colorPrimaryDark">#3F5662</item>
</style>