我在ui/handheld/android /目錄中有一個文件。裏面,我打電話一個圖像如下面的代碼圖像不會出現在Titanium應用程序中
var var1 = Ti.UI.createImageView({
bottom: '150dp',
image: '/images/example.png',
width: '205.33dp'
})
但它沒有出現。我有我的圖片上的資源/安卓/圖片/
我在ui/handheld/android /目錄中有一個文件。裏面,我打電話一個圖像如下面的代碼圖像不會出現在Titanium應用程序中
var var1 = Ti.UI.createImageView({
bottom: '150dp',
image: '/images/example.png',
width: '205.33dp'
})
但它沒有出現。我有我的圖片上的資源/安卓/圖片/
那麼它應該是
var var1 = Ti.UI.createImageView({
bottom: '150dp',
image: '/android/images/example.png',
width: '205.33dp'
})
感謝
我解決了這個問題:
var var1 = Ti.UI.createImageView({
bottom: '150dp',
image: '/images/example.png', /* this is the RIGHT way */
width: '205.33dp'
})
我嘗試了多種方法和找到了正確的。謝謝大家!
好吧,我很好奇。這與你的問題不完全一樣嗎? – mwfire
我在代碼中看不到任何區別:-D – Anand
看起來這是模擬器的問題。是的,是相同的代碼。我不知道mi Titanium會發生什麼 – hectorcedeno
您是否將圖像添加到了正在顯示的視圖中。 –
請看看http://stackoverflow.com/questions/17806846/titanium-imageview-wont-display-images – Anand
也檢查你是否實際上將圖像添加到視圖。我知道這聽起來微不足道,但有時我傾向於忘記... – mwfire