sencha触摸布局:hbox标签重叠

时间:2012-06-21 05:50:53

标签: sencha-touch-2

当我将布局用作vbox时,

标签会重叠。 (但是当我使用布局作为hbox时标签不重叠) 以下是我写的代码: -

Ext.define('Project.view.tablet.ExpInt', {
extend: 'Ext.Panel',
requires:[
          ],
xtype: 'expint',

id: 'expint',
config : {
items: [
        {
        title    : 'All',
        xtype:'panel',
        fullscreen: true,
        layout: 'vbox',
        items:[
               {
                 xtype: 'image',
                 src: 'http://twitgoo.com/images/help-icon.jpg',
                 id: 'confImage',
                 //height: '100%',
                 flex: 1
               },
               {    
                    xtype:'label',
                    flex:1,
                    //html: ' ',
                    id:'confName',
                    //cls:'expInthr',
                    //margin:'5 5 5 0'           
                },
                {   
                    xtype:'label',
                    flex:1,
                    //html: ' ',
                    id:'confDetails',
                    //cls:'expInthr',
                    //margin:'5 5 5 0'           
                }
        ]
        }    
       ]
}
});

我在想fullscreen: true;会出现问题,但看起来并不像。 此外,当我使用layout : vbox

时,图像不会显示

0 个答案:

没有答案