What are the sizes used for the iOS application splash screen?

2018 Update – Please don’t use this info ! I’m leaving the below post for reference purposes. Please read Apple’s documentation Human Interface Guidelines – Launch Screens for details on launch screens and recommendations. Thanks Drekka July 2012 – As this reply is rather old, but stills seems popular. I’ve written a blog post based … Read more

How to create Splash screen with transparent background in JavaFX

Try this JavaFX splash sample created for the Stackoverflow question: Designing a splash screen (java). And a follow up sample which also provides application initialization progress feedback. JavaFX does offer the Preloader interface for smooth transfer from splash to application, but the above samples don’t make use of it. The splash samples above also don’t … Read more

Phonegap – add a splash screen for Android app

In order to have a splash screen in a PhoneGap Android application you need to put your splash.png file into res/drawable-ldpi, res/drawable-mdpi, res/drawable-hdpi, res/drawable-xhdpi. Where those directories represent low, medium, high and extra large dots per inch. You’ll need to resize you splash.png (the file name is important here) for each directory or Android will … Read more

Android SplashScreen

The problem is most likely that you are running the splash screen (some sort of Dialog such as ProgressDialog I assume) in the same thread as all the work being done. This will keep the view of the splash screen from being updated, which can keep it from even getting displayed to the screen. You … Read more