2

我正在用 Titanium 制作一个应用程序。XML 不同于 Net Beans。例如:

<Alloy>
    <Window>
        <TextField hintText="Login"></TextField>
        <TextField hintText="Password" passwordMask="true"></TextField>
        <Button>Login</Button>
    </Window>
</Alloy>

这会将 2 个 TextField 和按钮全部放在一起... Y?

4

1 回答 1

4

首先看一下文档。关于如何设置视图样式。这些指南很有帮助。

然后为您的窗口尝试垂直布局,并为您的输入尝试更多定义的大小:

<Alloy>
    <Window layout="vertical">
        <TextField hintText="Login" height="40" width="Ti.UI.FILL"></TextField>
        <TextField hintText="Password" passwordMask="true" height="40" width="Ti.UI.FILL"></TextField>
        <Button height="40" width="Ti.UI.FILL">Login</Button>
    </Window>
</Alloy>

那应该让你开始。

于 2013-06-18T01:58:01.817 回答