3
我有幾個屏幕元素在XML文件中SAPUI5 - 垂直佈局重心
<core:View controllerName="myapp.view.login.login"
xmlns="sap.m" xmlns:core="sap.ui.core"
xmlns:l="sap.ui.layout">
<l:VerticalLayout >
<l:content>
<Input
type="Text"
maxLength="15"
fieldWidth="15px"
placeholder="name"
textAlign="Center">
</Input>
<Input
type="Password"
maxLength="15"
fieldWidth="15px"
placeholder="password"
textAlign="Center">
</Input>
<Button
text="Log in"
press="logIn">
</Button>
</l:content>
</l:VerticalLayout>
</core:View>
我怎麼可以添加類似的佈局重心或對齊,我想在屏幕中心這些元素。你能幫我解決嗎?謝謝。
這是工作,但它是在頁面的頂部中間我可以水平和垂直居中。? – miskohut
那麼,我已經給你提示了;-)只需嵌入一個'HBox'來在X軸上進行調整和對齊 – Qualiture