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
feedback
|
|
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:
Then in your main Java class, the one that extends DroidGap, you'll need to add one line and modify another. First add:
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:
That should do it for you. | |||||||||||||||||
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.
| |||
|
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? | |||
|
feedback
|