絵を描くことができるGalaxy Tab用のアプリケーションを作りたいと思っています... MSペイントに似たもの(理由は聞かないでください:))最初のステップは次のとおりです。
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?
});
では、どのようにピクセルを描画すればよいでしょうか?