Add Splash screen in Android App

Hi everybody,

Please, guide me to add Splash screen! Thank a lot!

In your initialisation code draw a full screen image and then delay any other initialisation until after the first render. This worked for me before but that was on an older version so you’d have to investigate if this still works.

In code this would look like:

//At the entry point

addChild( yourFullScreenBitmap );
Timer.delay( carryOnWithInit, 10 );

// Don't do anything else here - put anything else in a function called carryOnWithInit()

Although the code is delayed only by 10ms it will actually be blocked until after the first render so where you’d normally see just a black screen it will now be filled with your image.

Thanks for your helping!

I will try! :smile: