Reputation: 786
Right now my application zooms into a white screen as it is launching.
I have noticed Google default Android apps using a launch image while their app binaries load.
Does Android offer the ability to use a launch image for an application? I do not mean a splash screen that is on a timer AFTER the app has launched. I mean a static resource that is shown while the app is loading. Like the Apple launch image. Thanks.
Example of launch image for iOS here.
Upvotes: 7
Views: 6673
Reputation: 5951
Having development experience on both sides, No, android does not provide any such way similar to LaunchImage of ios.
Upvotes: -2
Reputation: 1592
This guide on splash screens might be useful for you:
https://www.bignerdranch.com/blog/splash-screens-the-right-way/
This will show a splash screen in the small amount of time before the app is initialized. If you do not feel like clicking:
The code sample is available here:
https://github.com/cstew/Splash
Upvotes: 4