Titanium:单击按钮时,按钮的背景图像(大小)无法正确显示

发布于 2024-12-25 06:12:30 字数 395 浏览 1 评论 0原文

我有一个尺寸为 200x200 的 image.png。 我将其用作按钮的背景图像,并将按钮大小设置为 60x60。

当我没有对其进行任何操作时,按钮(及其图像)会按预期正确显示。

当我单击按钮时,背景图像变暗(正常)

但是,单击按钮时按钮的背景图像(大小)不会正确显示。

有谁知道出了什么问题以及如何使单击的暗淡图像保持相同的大小?

var loginButton = Titanium.UI.createButton({
   backgroundImage:'/images/someimage.png',
   height: 200 * 0.3,
   width: 200 * 0.3,
   bottom: 160
   left: 65
});

I have an image.png with dimensions 200x200.
I use it as the background image for a button and I set the button size to 60x60.

The button (and its image) appears correctly as intended when I'm not doing anything to it.

When I click the button, the background image dims (as per normal)

However, the background image (sized) of the button does not appear correctly when button is clicked.

Does anyone know what is wrong and how to make the clicked dimmed image remain the same size?

var loginButton = Titanium.UI.createButton({
   backgroundImage:'/images/someimage.png',
   height: 200 * 0.3,
   width: 200 * 0.3,
   bottom: 160
   left: 65
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜声 2025-01-01 06:12:30

我建议您使用与按钮相同大小的背景图像。为了避免调整背景图像的大小,您的问题可能会消失。

I would suggest you to use the same size of backgroundImage as the button. To avoid the resize of background image, your problem may be gone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文