0

我想为 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?
});

那么,我应该如何绘制像素?

4

1 回答 1

4

抱歉,我还没有阅读完整的问题。

试试这个,这是一个 Titanium Appcelerator 模块,这是完全免费的 它还有一个简单的例子。您可以轻松使用。

再次真的很抱歉。。

于 2012-10-04T09:29:04.180 回答