我只是想知道这件事,我怎么能在android中使用Phone gap创建一个启动画面。但是,我没有找到正确的方法来做到这一点:( 这是我正在使用的一些代码..它显示黑屏然后index.html页面 开始活动如下:
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl(Config.getStartUrl(), 10000);
index.html标题中的Javascript代码:
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
navigator.splashscreen.show();
}