在这里,我在 sencha touch 中的代码,我尝试水平添加 2 个按钮,意味着一个到另一个。不,幸运的是它继续在上侧出现一个,另一个在下侧。
var profilese = {
standardSubmit : false,
items: [tab,{
xtype: 'button',
text: 'ADD',
ui: 'confirm',
handler: function() {
view.setActiveItem(2, {type:'fade', direction:'right'});
}
},{
xtype: 'DELETE',
text: 'Search Friends',
ui: 'Search',
handler: function() {
view.setActiveItem(3, {type:'fade', direction:'right'});
}
}]
};
如何在同一行设置按钮。请帮我整理一下。