我想为 Galaxy Tab 制作一个应用程序,它可以让我画图......类似于 MS Paint 的东西(不要问我为什么 :))所以第一步是:
win = Ti.UI.createWindow({
backgroundColor: 'black',
exitOnClose: true
});
image = Ti.UI.createImageView({
width: 200,
height: 200
});
image.addEventListener('touchmove', function(e){
//And here I need somehow to draw a pixel on image at e.x, e.y coordinates
// How can i do it?
});
那么,我应该如何绘制像素?