1

工具栏中的分段按钮在 Android 设备中显示为左对齐,但在我的 chrome 浏览器和 iOS 设备中,它显示在中心。如何在 Android 中制作也出现在中心。

4

1 回答 1

1

你能告诉我一些代码吗?它在 Android 中也适用于我。

您唯一需要做的就是在分段按钮项目之前和之后添加 xtype:spacer。

items : [{ xtype : 'spacer'},

         {xtype : 'segmentedbutton', items:[]},

         {xtype : 'spacer'}]

这应该可以工作,无论您使用什么浏览器。

于 2012-11-04T14:45:52.517 回答