钛:图像 -> “自动”

发布于 2024-12-22 16:00:55 字数 390 浏览 1 评论 0原文

假设我有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-12-29 16:00:55

如果您避免使用 height=auto,它将起作用。在某些情况下,它将采用父窗口高度,自动高度值将不等于父窗口高度。在下面的代码示例中,它将起作用,因为按钮宽度将固定为 100,但高度将根据窗口大小而变化。

var window = Titanium.UI.createWindow();
var button = Titanium.UI.createButton({
    bottom : 50,
    backgroundImage : "assets/images/boston_college.png",
    width:100
});
window.add(button);
window.open();

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.

var window = Titanium.UI.createWindow();
var button = Titanium.UI.createButton({
    bottom : 50,
    backgroundImage : "assets/images/boston_college.png",
    width:100
});
window.add(button);
window.open();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文