我正在使用Phonegap Build服务(来自Dreamweaver CS6),我一直在使用这个模板:http://themeforest.net/item/tiger-jquery-mobile-web-template-web-app/3018322,其中包含大量的js和css文件。问题是当启动画面消失时,应用程序没有加载正确显示应用程序所需的所有js和css文件,并且某些功能(在Android上工作)如画廊幻灯片显示不起作用。此外,当我启动Android应用程序时,它看起来像一个没有css的网页一段时间,但它在几秒钟后正确显示应用程序。
答案 0 :(得分:0)
您是否关注phonegap documentation添加启动画面?
假设您使用的是最新版本的phonegap(2.8.0),请将这些行添加到扩展phonegap的主java类中:
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl(Config.getStartUrl(), 10000);
然后在你的应用JS:
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
navigator.splashscreen.hide();
}