I am looking for a way to use the onLongClick event that I have registered on my custom View for a ContextMenu. The problem is, I have my one dragging and zooming routines implemented. But I want both, a ContextMenu when there is no motion and no ContextMenu when there is motion. So I have to figure out motion and stop the ContextMenu from getting created.

The only way to figure out motion or not I know is to cache the MotionEvent at ACTION_DOWN time and at ACTION_MOVE time. Than you have to calculate the spacial delta. But the onLongClick event is triggered microseconds after ACTION_DOWN with no chance ever to get a ACTION_MOVE event.

A more detailed description can be found in my blog.
http://strangeoptics.blogspot.com/2011/09/android-how-to-create-contextmenu.html

link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.