你可能试验过
docked:'right'
然后右边上下对不齐
你可能试验过
right:'0%'
top'10%'
很难看
你可能试验过
align:'right'
对不起,button没有这个属性
so。。。答案是
items: [{
xtype: 'button',
ui: 'mask',
iconCls: 'refresh',
handler: refresh
}, {xtype: 'spacer'}, {
xtype: 'button',
ui: 'mask',
iconCls: 'add',
handler: refresh
}]
加一个space搞定
Just to explain the reason behind this. In Sencha Touch, toolbars are nothing more
than containers with an hbox layout and custom styling. So in order to alter the alignment, the pack and other hbox layout configuration you could do:
Code:
layout: { pack: 'justify', align: 'center' // align center is the default }
Finally I just wanted to paste the code for the Spacer class to show you what it does.
Code:
Ext.Spacer = Ext.extend(Ext.Component, { initComponent : function() { if (!this.width) { this.flex = 1; } Ext.Spacer.superclass.initComponent.call(this); } });
I hope this answered your question.