I am facing the issue in changing the colour of the status bar in lollipop devices .
Intially my status bar colour is in light grey i want to change the status bar colour into red.
The styles using for the activity is
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">#A82A37</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
The above style added in my application but there is no change in status bar colour.Please help me how to solve this.