钛:图像 -> “自动”
假设我有一个名为 hello.png
的图像,尺寸为 200x100
。 我使用 hello.png
创建一个按钮,如下所示:
var button = Titanium.UI.createButton({
bottom : 50,
backgroundImage : "images/hello.png",
width:100,
height:"auto";
});
window.add(button);
设备上按钮的高度的外观是什么? 是 200 像素还是远小于 200(也许是 50)?
根据我在 google 上找到的信息,按钮应该是 200 像素。但是当我编译应用程序时,按钮高度大大缩小了:/
Let's say I have an image called hello.png
with dimensions 200x100
.
I create a button using that hello.png
like this:
var button = Titanium.UI.createButton({
bottom : 50,
backgroundImage : "images/hello.png",
width:100,
height:"auto";
});
window.add(button);
What would be the appearance of the height of the button on the device?
Would it be 200 pixels or would it be much less than 200 (maybe say 50)?
Based on what I've found on google, the button should be 200 pixels. But when I compile the app, the button height is greatly shrunken :/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您避免使用
height=auto
,它将起作用。在某些情况下,它将采用父窗口高度,自动高度值将不等于父窗口高度。在下面的代码示例中,它将起作用,因为按钮宽度将固定为 100,但高度将根据窗口大小而变化。If you avoid the
height=auto
, it will work.It will take the parent height in some case the auto height value wont be equal to the parent window height. In the below code sample it will work as the button width will be fixed to 100 but the height will be changing accordance with the window size.