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.

Thanks for your help

Paul

link|improve this question

64% accept rate
Just 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
7  
I 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
feedback

3 Answers

up vote 28 down vote accepted

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-xdpi. Where those directories represent low, medium, high and extra large dots per inch. You'll need to resize you slash.png for each directory or Android will stretch it for you.

The sizes of each image should be:

  • xlarge: at least 960 x 720
  • large: at least 640 x 480
  • medium: at least 470 x 320
  • small: 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.

link|improve this answer
1  
Hi SImon i Just get an error stating ' the application has stopped unexpectedly when implementing the above? – Paul Nov 16 '11 at 19:35
2  
There seems to be an issue using the timeout parameter in PhoneGap 1.2. See also stackoverflow.com/questions/8100219/… – Paul Beusterien Nov 16 '11 at 23:12
1  
If 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 – Paul 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. community.phonegap.com/nitobi/topics/… – Wytze Mar 5 at 10:44
show 3 more comments
feedback

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);
    ...
}...
link|improve this answer
feedback

I was wondering if there is a possibility to not use a fixed timeout value but to check if the app has loaded completely?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.