When I launch my app, it blacks out for a fraction of seconds. Then it launches the activity. I would like to make the black out thing to white. Could anyone please help me to change it?
I tried changing the android:windowBackground to white in style xml file. But, it is not not helping out.
<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>
<item name="android:windowBackground">@color/white</item>
</style>
Thanks in advance!