vote up 1 vote down star

I am implementing OnTouchListener and am receiving MotionEvent objects. Some ACTION_MOVE events reports absolute X/Y coordinates, while some reports relative coordinates.

How can I ask a MotionEvent what kind of coordinates it currently represents?

flag

75% accept rate

2 Answers

vote up 1 vote down

You may want to use these for absolute coordinates (absolute, regarding the screen of the device):

MotionEvent.getRawX()

MotionEvent.getRawY()

The other methods, getX() and getY(), should return you coordinates, relative to the View, that dispatched them.

link|flag
I have solved my problem by using said getRawX() and getRawY(). I do however find it to be a depressing solution as it suggest that getX() and getY() are useless, even though it feels like they should be the primate methods for the MotionEvent class. There MUST be a more elegant solution. – PeyloW Sep 12 at 20:58
vote up 0 vote down check

This is a limitation on the Android platform.

MotionEvent will sometimes return absolute X and Y coordinates relative to the view, and sometimes relative coordinates to the previous motion event.

An event sent as ACTION_DOWN will always be absolute, all other events will vary. There is no way to ask the MotionEvent for the current type of coordinates.

This means that in practice getX() and getY() are useless for many use cases, and you should base your application logic on getRawX() and getRawY() that is guaranteed to return absolute coordinates, relative to the device screen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.