0

我有一个容器,里面堆放了一些不同的物品。我还想在容器内有两个标题栏,但高度降低到 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 :)'
                    }
                ]
            }
        ]
    }

});

我想要标题为“登录”且高度降低的工具栏。任何帮助将不胜感激。先感谢您。:)

4

1 回答 1

2

如果您需要调整工具栏大小,请在工具栏配置中使用 minHeight 选项和单位。这是一个工具栏示例,其高度为当前字体大小的 2 倍。

    {
        xtype: 'toolbar',
        docked: 'top',
        minHeight: '2em',
    }
于 2013-05-17T08:18:53.157 回答