我完全按照本教程http://docs.sencha.com/touch/2-0/#!/guide/getting_started 我的应用程序正在我的网络浏览器(在我的笔记本电脑中)上运行,它是为 Android 生成的。但是当我安装并启动它时,蓝屏上仍然有加载图标。有什么想法吗?
谢谢
Ext.define("GS.view.Main", {
extend: 'Ext.tab.Panel',
requires: [
'Ext.TitleBar'
],
config: {
tabBarPosition: 'bottom',
items: [{
xtype : 'homePanel'
}
]
}
});
Ext.define('GS.view.Home', {
extend : Ext.Panel,
xtype : 'homePanel',
config : {
title : 'Home',
iconCls : 'home',
scrollable : true,
styleHtmlContent : true,
html: [
'<img src="http://staging.sencha.com/img/sencha.png" />',
'<h1>Welcome to Sencha Touch</h1>',
"<p>You're creating the Getting Started app. This demonstrates how ",
"to use tabs, lists and forms to create a simple app</p>",
'<h2>Sencha Touch (2.0.0)</h2>'
].join("")
}
});