嗨,当我从一个窗口移动到另一个窗口并返回第一个窗口时,我在钛合金中出现错误。第一个窗口包含一个 png 图像。想知道如何消除这个错误。
代码:
var noteview = Ti.UI.createImageView({
image : 'TaskNote.png',
width : '10%',
left : '70%',
height:'70%',
labelname:'Note'
});
noteview.addEventListener('click', function(e) {
var tasknotewindow = Ti.UI.createWindow({
backgroundColor : 'white',
layout : 'vertical',
url : 'TimeTracker/tasknote.js'
});
tasknotewindow.starttime=inlabel.text;
tasknotewindow.open();
});
错误:
01-08 12:37:42.111: W/TiDrawableReference(501): (main) [295,31932] 无法确定位图边界。如果位图被加载,它不会被缩放。