我在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();
但它没有在背景中显示任何图像,我在哪里做错了?我是钛的新手,请帮忙
答案 0 :(得分:6)
尝试将另一个/添加到路径中,如:
image:"/images/Hypedin.png",
您也可以尝试设置正确的定位:
top: 0,
left: 0
您检查了日志/输出吗?有错误吗?
答案 1 :(得分:1)
您的代码没有错。检查并确保images/Hypedin.png
有正确的拼写。可能是一个错字。