How to change the status bar color in Android?

后端 未结 21 2049
旧时难觅i
旧时难觅i 2020-11-21 16:09

First of all it\'s not a duplicate as in How to change the background color of android status bar

How do I change the status bar color which should be same as in nav

21条回答
  •  春和景丽
    2020-11-21 16:19

    For Java Developers:

    As @Niels said you have to place in values-v21/styles.xml:

    @color/black
    

    But add tools:targetApi="lollipop" if you want single styles.xml, like:

    @color/black
    

    For Kotlin Developers:

    window.statusBarColor = ContextCompat.getColor(this, R.color.color_name)
    

提交回复
热议问题