x86
x86

Reputation: 519

Is there anyway to disable default splash screen for android 12

I want to add custom splash screen but before that the default splash screen displayed which looks too weird

Upvotes: 1

Views: 9175

Answers (2)

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

Babul
Babul

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

Related Questions