1

我需要在 Titanium studio(版本 3.1.1)中的按钮上添加背景图像。我几乎尝试了所有我能想到的东西,但按钮图像仍然没有出现。图片文件路径正确。我清理了项目,重新启动钛仍然无法正常工作。当我尝试添加窗口背景图像时,我遇到了同样的问题,它没有显示出来,突然出现,甚至没有更改一行代码。我怎样才能解决这个问题?

var pauseResumeButton = Titanium.UI.createButton({
title:"play",
top:'70%',
width:80,
height:80,
backgroundColor:'green',
backgroundImage:"/graphics/play.png",
});
4

2 回答 2

0

试试下面的代码

var pauseResumeButton = Titanium.UI.createButton({
    title:"play",
    top:'70%',
    width:80,
    height:80,
    backgroundColor:'green',
    backgroundImage:"graphics/play.png",
});

也请参考这个答案

于 2013-08-01T06:33:39.040 回答
0

尝试将按钮的背景更改为transparent

var pauseResumeButton = Titanium.UI.createButton({
    title:"play",
    top:'70%',
    width:80,
    height:80,
    backgroundColor:'transparent',
    backgroundImage:"graphics/play.png",
})
win.add( pauseResumeButton )
于 2013-08-02T01:22:51.080 回答