0

是否可以有一个带有 tabBar 的视图,并连接选项卡以在点击时显示不同的视图?

提前谢谢!

4

2 回答 2

0

事实证明这比我想象的要容易!

items: [
    {
         xtype: 'xtype of the view you want to link to'
    }]
于 2012-06-23T11:52:13.847 回答
0

是的,SDK 中甚至内置了一个:http ://docs.sencha.com/touch/2-0/#!/api/Ext.tab.Panel

您希望在它们之间切换的视图只是选项卡面板视图的子视图:

Ext.create('Ext.TabPanel', {
    fullscreen: true,
    tabBarPosition: 'bottom',

    defaults: {
        styleHtmlContent: true
    },

    items: [
        {
            title: 'Home',
            iconCls: 'home',
            html: 'Home Screen'
        },
        {
            title: 'Contact',
            iconCls: 'user',
            html: 'Contact Screen'
        }
    ]
});
于 2012-06-22T13:56:22.547 回答