[Solved] How to get rid of this default splash screen?


You can’t. Android will always attempt to show something using only the attributes of your theme before your Activity actually loads.

In fact, the correct way to build a splash screen involves taking advantage of that fact and customizing your theme such that what displays during this time is your splash screen.

1

solved How to get rid of this default splash screen?