我在 android 的 app.js 文件中有这段代码,在我的资源中有一个 images 文件夹:
var win = Titanium.UI.createWindow({
title : "my Name is Reyjohn",
backgroundColor : "#FFFFFF",
exitOnClose : true
})
var img = Titanium.UI.createImageView({
image:"images/Hypedin.png",
height:20,
width:30
});
win.add(img);
win.open();
但它没有在背景中显示任何图像,我在哪里做错了?我是钛新手,请帮忙