2012-06-22 43 views

回答

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' 
     } 
    ] 
}); 
+0

是的,我知道sencha touch 2中標籤面板的實際存在......我不知道如何將視圖鏈接到標籤。 –

0

原來它比我想象的要簡單!

items: [ 
    { 
     xtype: 'xtype of the view you want to link to' 
    }] 
+0

用文檔的示例編輯回覆。 – SuperSaiyen

相關問題