Reputation: 519
I want to add custom splash screen but before that the default splash screen displayed which looks too weird
Upvotes: 1
Views: 9175
Reputation: 61
you can add this line:
<item name="android:windowIsTranslucent">true</item>
in your style.xml file before close style tag. it`s make your default android splash transparent!
Upvotes: 6
Reputation: 1224
On Android tweleve(12), it's not possible to out of the splash screen. Only possible to customize it: icon, window background, and animation.
By default, the splash screen is shown from user touch until the first frame of your application is drawn, so to minimize the time during which the splash screen is shown, you can try to reduce the launch time of your application.
You can also implement you own exit animation so the transition from the splash screen to the app is more seamless.
Upvotes: 0