sencha build コマンド (sencha app create) を使用して、シンプルな sencha touch アプリケーションを生成しました。その後、アプリケーションに cordova 2.3.0 を含めました。私の index.html ファイルは次のとおりです。
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>SimpleApp</title>
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
background-color: #1985D0
}
#appLoadingIndicator {
position: absolute;
top: 50%;
margin-top: -15px;
text-align: center;
width: 100%;
height: 30px;
-webkit-animation-name: appLoadingIndicator;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: linear;
}
#appLoadingIndicator > * {
background-color: #FFFFFF;
display: inline-block;
height: 30px;
-webkit-border-radius: 15px;
margin: 0 5px;
width: 30px;
opacity: 0.8;
}
@-webkit-keyframes appLoadingIndicator{
0% {
opacity: 0.8
}
50% {
opacity: 0
}
100% {
opacity: 0.8
}
}
</style>
<script type="text/javascript" charset="utf-8" src="cordova-2.3.0.js"></script>
<script type="text/javascript" charset="utf-8">
function load() {
document.addEventListener('deviceready', onDeviceReady, false);
};
function onDeviceReady() {
alert('Phonegap is Ready Now');
}
</script>
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src="sdk/microloader/development.js"></script>
</head>
<body onload="load();">
<div id="appLoadingIndicator">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
しかし、このアプリケーションを Android シミュレーター アプリケーションにロードするたびに、デフォルトのスプラッシュ画面でスタックします。取り外せません。5 分経っても、アプリケーションのロード インジケータしか表示されません。
私はEclipseを使用してapkを生成しています。libs フォルダーに cordova-2.3.0.jar を配置しました。私はAndroid 4.0に対してテストしています。
どうすればこの問題を解決できますか?