1

私はこのチュートリアルhttp://docs.sencha.com/touch/2-0/#!/guide/getting_startedに正確に従っています 私のアプリケーションは私のウェブブラウザ (私のラップトップ) で動作しており、Android 用に生成されています。しかし、インストールして起動すると、ブルー スクリーンに読み込み中のアイコンがまだ表示されます。これについてのアイデアはありますか?

thnx

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 に答える