2013-08-01 77 views
1

我需要將背景圖像添加到Titanium studio(版本3.1.1)中的按鈕。我嘗試了幾乎所有我能想到的東西,但仍然沒有顯示按鈕圖像。圖像文件路徑是正確的。我清理了這個項目,重新啓動了鈦金屬仍然無法工作。當我試圖添加窗口背景圖像時,我遇到了同樣的問題,它沒有顯示出來,突然間甚至沒有更改一行代碼。我怎樣才能解決這個問題?Titanium Button圖像不顯示

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

現在具有u顯示背景圖片或不 ? –

+0

仍然沒有顯示。 – user2346002

+0

嘗試從你的代碼中刪除第一個'/',並將路徑設置爲圖形/ play.png – Anand

回答

0

試試下面的代碼

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

請同時參閱this答案

0

試圖改變你的按鈕的背景transparent這樣的:

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