In one of my Activities, I changed the Toolbar color using Palette
. But on 5.0 devices using ActionBarActivity
the status bar
color is the color of my colorPrimaryDark
in my activity theme so I have 2 very different colors and it does not look good.
I realize that in 5.0 you can use Window.setStatusBarColor()
but ActionBarActivity
does not have this.
so my question is in 5.0 how can I change the status bar color with ActionBarActivity
?