Chris,
It sounds like you are loading a lot of JavaScript and probably some of it is remote script tags in the head tag of your HTML. Those script tags will be blocking which is why it takes awhile to get to the body tag to start displaying your HTML. Mys suggestions are:
1) move some of the script tags to the end of the body tag so they are loaded last.
2) try adding a delay on loadUrl so the splash screen stays up longer.
super.loadUrl("index.html", 3000);
Mind you this is just me debugging remotely without seeing any of your code.
Simon
> --
> You received this message because you are subscribed to the Google
> Groups "phonegap" group.
> To post to this group, send email to
phon...@googlegroups.com
> To unsubscribe from this group, send email to
>
phonegap+u...@googlegroups.com> For more options, visit this group at
>
http://groups.google.com/group/phonegap?hl=en?hl=en
>
> For more info on PhoneGap or to download the code go to
www.phonegap.com>