解决方法
根据您的代码,我认为您面临Android Phonegap应用的问题.
您必须在设备就绪时关闭启动画面,而不是在loadUrl方法中给出特定时间.
代码片段:
super.setIntegerProperty("splashscreen",R.drawable.splash); // display splash screen for android this.setIntegerProperty("loadUrlTimeoutValue",70000); super.loadUrl("file:///android_asset/www/index.html",10000);// Give max time here
在Phonegap onDeviceReady方法中隐藏启动画面:
document.addEventListener("deviceready",onDeviceReady,false); // Cordova is ready // function onDeviceReady() { cordova.exec(null,null,"SplashScreen","hide",[]) }