我有一个容器,里面堆放了一些不同的物品。我还想在容器内有两个标题栏,但高度降低到 10 磅。我尝试使用数量较少的 setHeight() 来减小大小,但我似乎无法实现。我错过了一些明显的东西吗?
有没有办法可以降低 Sencha Touch 中工具栏/标题栏的高度?帮助!
更新:这是我用于工具栏的代码...
Ext.define('MyApp.view.CookingSteps', {
extend: 'Ext.Container',
alias: 'widget.CookingSteps',
config: {
height: '',
html: '',
id: 'CookingSteps',
itemId: 'CookingSteps',
style: '',
layout: {
type: 'vbox'
},
items: [
{
xtype: 'toolbar',
docked: 'top',
height: 50,
html: '<b><center>AdBanner Goes Here',
style: 'background: gray;',
styleHtmlContent: true
},
{
xtype: 'container'
},
{
xtype: 'fieldset',
title: '',
items: [
{
xtype: 'textfield',
label: '',
placeHolder: 'Username'
},
{
xtype: 'textfield',
label: '',
placeHolder: 'Passphrase'
}
]
},
{
xtype: 'toolbar',
docked: 'top',
height: 20,
minHeight: '20',
title: 'Login'
},
{
xtype: 'container',
items: [
{
xtype: 'button',
centered: true,
ui: 'confirm',
width: 283,
text: 'Go Ahead :)'
}
]
}
]
}
});
我想要标题为“登录”且高度降低的工具栏。任何帮助将不胜感激。先感谢您。:)