I'm using javascript and the HTML5 canvas to try and add a simple signature 
field to a system that is otherwise very simple.  But the touch input i'm 
getting from android, using only the following code to try and minimise the 
javascript code, doesn't pool the data enough.  I need to be getting 3x (at 
least) as many input events for a touch than I'm getting now ( android 2.3, 
galaxy s3 ).   Is there anything I can do to improve this? 

_xyz.line.push( { _x: e.touches[0].pageX - _xyz.offsetx, _y: 
e.touches[0].pageY - _xyz.offsety } ); 

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to