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
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:
tools:targetApi="lollipop"
For Kotlin Developers:
window.statusBarColor = ContextCompat.getColor(this, R.color.color_name)