我正在使用 phonegap 1.9、android、eclipse 4.2、jquerymobile 我想显示启动画面。我已经使用了这篇文章。它在 android 模拟器中运行良好,但是当我使用 build.phonegap.com/apps/MyAppId/builds 构建应用程序并在 ipad 上运行它时,默认启动屏幕出现在这里是我的代码,我已将图标和 spalshscreen 图像放在各自的文件夹中
java活动代码
public class MyPhoneGapActivity extends DroidGap {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.ic_launcher);
super.loadUrl("file:///android_asset/www/index.html",5000);
}
}
javascript代码
<script type="text/javascript" charset="utf-8">
var onDeviceReady = function() {
cordova.exec(null, null, "SplashScreen", "hide", []);
document.getElementById("devready").innerHTML = "";
};
function CheckDeviceReady() {
document.addEventListener("deviceready", onDeviceReady, true);
}
</script>
<body onload="CheckDeviceReady();" id="stage" class="theme">
<div id="devready" data-theme="b">Device not ready..</div>
</body>