如何在sap.m.Toolbar右侧放置sap.m.Button?

时间:2016-05-25 08:18:29

标签: sapui5

我使用以下代码从sap.m创建一个工具栏:

var oPage = new sap.m.Page({
    title: "Statusverfolgung",
    footer: new sap.m.Toolbar({
        content: [
            new sap.m.Button({
                text: "Next status"
            })
        ]
    }),
    content: [
        oBox
    ]
});

现在此按钮位于左侧。我怎样才能把它放在右边?

2 个答案:

答案 0 :(得分:4)

在Button之前使用ToolbarSpacer,用于工具栏项之间的水平间距。

Here正在运作。

答案 1 :(得分:2)

如果您使用的是xml,请使用此代码

<footer>
  <Bar>
    <contentRight>
      <Button
        text="Next status"
        press="onPressButton" />
    </contentRight>
  </Bar>
</footer>