color the statusbar in android splash screen
Adding the colorPrimaryDark
item to your theme should do the trick:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splashscreen</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
</style>