解决方法
根据您的代码,我认为您面临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",[]) }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。