1

我完全按照本教程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("")
    }
});
4

1 回答 1

1

您的代码有小错误,请尝试以下操作:

Ext.define('GS.view.Main' , {
     extend: 'Ext.TabPanel',

     config: {
        fullscreen: true,
        styleHtmlContent: true,
        tabBarPosition: 'bottom',

        items: [{
                 xtype : 'homePanel'
                }
       ]
    }
});

我希望这有帮助。:)

在此处输入图像描述

于 2012-07-14T05:41:08.733 回答