I have this code in my Android app:
$.MiVentana.addEventListener('touchmove', function(e){ Ti.API.info('*** Estoy en touchmove: **X:'+ e.x + ' **Y:' + e.y + ' **Ancho:' + screenWidth); });The problem is coordinates e.x and e.y can be negatives. Why?? How i can know where i touch the screen?
Thanks