Adding the below line in your themes.xml
, will do the job:
<style name="Theme.YourAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- change the color code as per your need -->
<item name="colorPrimaryDark">#000</item>
<!-- rest of your style statements -->
</style>
Hope, it will help.