Remove default SplashScreen in Android Studio JAVA

Step 1: Copy this code and paste it into [themes.xml and themes.xml(night)] in <style> ... </style> tag

<item name="android:windowIsTranslucent">true</item>
<item name="android:windowSplashScreenBackground" tools:ignore="NewApi">@null</item>
<item name="android:windowSplashScreenAnimatedIcon" tools:ignore="NewApi">@null</item>
<item name="android:windowSplashScreenIconBackgroundColor" tools:ignore="NewApi">@null</item>


Next Post Previous Post
No Comment
Add Comment
comment url