The Easiest Way is :got to res -> value -> styles and add this
1: Add this in your color xml file
<resources> <color name="colorPrimary">#3F51B5</color> <color name="colorPrimaryDark">#000000</color> <color name="colorAccent">#FF4081</color> </resources>
2:Add this in your styles.xml file
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style>
Note:
- colorprimary is for Actionbar
- colorPrimaryDark is for Statusbar
- your can change these colors and u could get ur required result .
OUTPUT :
