In order to remove the default white splash screen I made a custom theme:
styles.xml
<style name="AppTheme.SplashTheme">
<item name="android:windowBackground">@drawable/splash_screen</item>
</style>
splash_screen.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">
<!--<item android:drawable="?colorPrimary" />-->
<item>
<bitmap
android:gravity="center"
android:src="@drawable/wq_logo" />
</item>
</layer-list>
Everything works fine but I want to change the background color of it. Its currently showing a purple color background. I want to make it white. In this app I'm using a Navigation drawer layout.