Could anybody please advise how I can add a splash screen to my HTML5 Phonegap based Android App. I just want it to display for 5 seconds on load. Also - can anybody advise what dimensions the splash screen should be.
-
2Just a friendly piece of advice, under no circumstances is it a good idea to put a splash screen on a mobile app. It's going to make your users super angry. – Kurtis Nusbaum Nov 16 '11 at 18:52
-
37I am sorry Kurtis, I am not sure what you are advocating. There are many very popular mobile apps that show a splash screen while they are loading without causing annoyance to their users. iOS even has an image caused Default.png specifically for this purpose. – Devgeeks Nov 16 '11 at 19:58
-
6@Devgeeks I agree with Kurtis Nusbaum for the case where you are showing a splash screen for the heck of it. If your application takes a long time to start up, a splash screen *with an activity indicator* probably better than nothing, which would be the likely reason for the popular applications you are talking about. Otherwise there are equal (or even greater) number of popular mobile apps that don't show splash screen. Basically get the user to the application as fast as you can. A 5 second splash screen every time is a bad idea as it will frustrate users in the long term. – Kinjal Dixit Oct 22 '12 at 09:07
-
1Please... don't do it! Splashscreen isn't a good idea :) It's right, that some popular apps has it, but it doesn't mean, that is a good idea ;) – Štěpán Víteček Dec 18 '13 at 07:08
-
1I think splash screens are a matter of taste/design. Of course most UX people will advice not using it but I disagree with them; a 1sec splash screen will not do any harm, instead, it will add a "personality" and sets a "theme" to your app making stand out of the thousands "bootstrapish" apps. In my device, more than 70% daily used apps have splash screens :) – numediaweb Dec 22 '13 at 23:01
-
I had answered another same issue. You might check the following answer out: http://stackoverflow.com/questions/13487124/android-splash-screen-sizes-for-ldpi-mdpi-hdpi-xhdpi-displays-eg-1024x76/27125893#27125893 – efkan Feb 28 '15 at 09:50
6 Answers
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 stretch it for you.
The sizes of each image should be:
- xlarge (xhdpi): at least 960 x 720
- large (hdpi): at least 640 x 480
- medium (mdpi): at least 470 x 320
- small (ldpi): at least 426 x 320
Then in your main Java class, the one that extends DroidGap, you'll need to add one line and modify another. First add:
super.setIntegerProperty("splashscreen", R.drawable.splash);
this line should show up under super.onCreate
but before super.loadUrl
. Then you'll need to modify your loadUrl method to pause for 5 seconds before loading up the main page. It would look like this:
super.loadUrl("file:///android_asset/www/index.html", 5000);
That should do it for you.
I've recently made some updates to how the SplashScreen works on PhoneGap Android. The main app now loads while the splash screen is being shown. This is a big improvement over the previous blocking splash screen call. Read more about the changes on my blog.

- 4,376
- 2
- 35
- 55

- 23,253
- 5
- 58
- 74
-
1Hi SImon i Just get an error stating ' the application has stopped unexpectedly when implementing the above? – Dancer Nov 16 '11 at 19:35
-
2There seems to be an issue using the timeout parameter in PhoneGap 1.2. See also http://stackoverflow.com/questions/8100219/how-to-use-openstreetmap-openlayers/8101460#8101460 – Paul Beusterien Nov 16 '11 at 23:12
-
1If I remove the 5 second timeout the app compiles and displays briefly on load - so it looks like a combination of above with a timeout fix would work a treat.. cheers for your help – Dancer Nov 17 '11 at 10:10
-
Yup, apparently there is a bug in 1.2 as Paul B mentioned. Bryce has already checked in a fix for it though. – Simon MacDonald Nov 17 '11 at 14:31
-
Just in case anyone is wondering, do NOT use a 9-patch image for your splash screen if you are developing with Phonegap. They do not support this, though they may in the future. http://community.phonegap.com/nitobi/topics/does_phonegap_build_support_the_use_of_9_patch_images – Wytze Mar 05 '12 at 10:44
-
Has the timeout parameter been fixed? I'm running PhoneGap 1.5 and I'm still seeing a crash as soon as I open my app (both in ICS and 2.2 Simulator). – Waynn Lue Mar 14 '12 at 02:37
-
-
Just an update. The 9 patch image bug has been fixed for the upcoming 1.6.0 release. – Simon MacDonald Apr 02 '12 at 20:04
-
Simon - you guys really need to stick this information in the phonegap documentation. We shouldn't have to search everywhere to find it!!! if it is in the documentation I couldn't find it, not even with a search of site:docs.phonegap.com splashscreen – Louis Sayers Aug 09 '12 at 07:13
-
-
6
-
@grahamparks It's not a requirement at all. You don't need to use a splashscreen if you don't want to. Also, you can specify whatever timeout you want. In the latest PG you can dismiss the dialog once your page is loaded so you don't even see the page being rendered. It is all ready once you hide the splash screen. – Simon MacDonald Aug 15 '12 at 14:33
-
My HTC Desire has a screen resolution of 800 x 480 and is classified as hdpi. Meaning it doesn't meet the aspect ratio of any of the image sizes recommended in this answer. This results in the splash screen being stretched horizontally and looking a bit naff. I am using Cordova 2.0. How can this be avoided? – BallisticPugh Oct 24 '12 at 15:43
-
1@BallisticPugh You want to use a 9-patch image so you can control what is stretched. – Simon MacDonald Oct 24 '12 at 20:36
-
@SimonMacDonald : Please help me. I have one list view work on emulator but not work in device. please help me. can you give me email address – Nirav Ranpara Dec 03 '12 at 11:50
-
how can you show it untill the app is ready? this code gives me the splash screen for 5 seconds, then a black screen and then will open index.html, si there a way to use any callback? – Toni Michel Caubet Aug 31 '13 at 11:28
-
-
Make sure your files are named splash.png for Android. Also, for my project (PhoneGap 3.3.0) I had to create directories with the orientation preceeding the screen density. For example, `drawable-land-ldpi`, `drawable-port-lpdi` and so on for each dpi. – Ian Jamieson Jan 14 '14 at 16:29
Phonegap (Apache Cordova) documentation has enough details about the splash screen and different resolutions for both Android and iOS at one place.
http://docs.phonegap.com/en/2.2.0/cordova_splashscreen_splashscreen.md.html

- 2,352
- 1
- 22
- 25
I have also face this issue in Phonegap Android, but now I got solution.
super.setIntegerProperty("splashscreen", R.drawable.splash);(find image under drawable folder named splash,so put splash.png under drawable folder)
super.loadUrl("file:///android_asset/www/index.html",15000);(splash screen will show 15 sec.
Please edit your main Java file under src
folder in your project directory:
public class radiobiafra extends DroidGap
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl("file:///android_asset/www/index.html",15000);
}
}

- 19,824
- 17
- 99
- 186
-
1This can normally be found: `platforms/android/src/com/[your app name]/[Your App Name.java` – Ian Jamieson Jan 14 '14 at 16:29
-
In my Phonegap app, Android version, Eclipse debugger throws tantrums if you set the splash screen or even the 'loading' dialog before calling loadUrl.
Both will work in the actual app installed on a device, but they will break your debugging. So I've put them behind loadUrl, where they can do no harm and still show well before the app itself.
public class App extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html",5000);
super.setStringProperty("loadingDialog", "Starting your app...");
super.setIntegerProperty("splashscreen", R.drawable.splash);
...
}...

- 7,844
- 8
- 49
- 62
This will probably meet your needs. It lets you customise and add all the relevant config.xml setting, images and splashscreens in a nice intuitive interface.
I recommend downloading the file and installing manually. The web based air installer doesn't seem to work.

- 19,824
- 17
- 99
- 186

- 3,084
- 2
- 33
- 67
Using Cordova >= 3.6, and building your app with the Cordova Command-Line Interface, it's possible to configure the splash screen from the config.xml
file. This is an example for Android:
<platform name="android">
<!-- you can use any density that exists in the Android project -->
<splash src="res/screen/android/splash-land-hdpi.png" density="land-hdpi"/>
<splash src="res/screen/android/splash-land-ldpi.png" density="land-ldpi"/>
<splash src="res/screen/android/splash-land-mdpi.png" density="land-mdpi"/>
<splash src="res/screen/android/splash-land-xhdpi.png" density="land-xhdpi"/>
<splash src="res/screen/android/splash-port-hdpi.png" density="port-hdpi"/>
<splash src="res/screen/android/splash-port-ldpi.png" density="port-ldpi"/>
<splash src="res/screen/android/splash-port-mdpi.png" density="port-mdpi"/>
<splash src="res/screen/android/splash-port-xhdpi.png" density="port-xhdpi"/>
</platform>
<preference name="SplashScreenDelay" value="10000" />
There is also a dedicated plugin to show/hide the splash screen programmatically.
See the Cordova documentation for more information.

- 15,478
- 6
- 74
- 115