I am writing an Android app that requires very precise measurements of movement. Ideally, I would like it if the user has their finger on the screen and moves one pixel, I can track it. Currently, I am overriding onTouch to track where the user is. The problem is, when the finger moves fast across the screen, onTouch misses as much as 15px in a movement. Is there a more precise way to do this that onTouch?
This is an example of what I am currently doing:
@Override
public boolean onTouch(View view, MotionEvent event){
if(event.getAction() == MotionEvent.ACTION_MOVE){
Log.d(TAG, event.getX() + ", " + event.getY();
}
}
Thanks.