I made SimpleOnGestureListener capturing onLongPress with MotionEvent, but the problem is that I can't read event displacement, since I am getting always ACTION_DOWN code. How to achieve that? I want to move some of the views during long clicking.
Thanks!

link|improve this question

43% accept rate
Can you show us the code you have attempted? – Raoul George Jan 13 at 11:32
feedback

1 Answer

up vote 0 down vote accepted

Using my crystal ball and without seeing your code I can only say that you should capture onTouch event. As one of solution, by onLongPress you can set some bool value (PRESSED, for example) and then in onTouch event handle move event.

Or you can try to play with listeners (set and unset them), but I don't think that it's a good idea.

link|improve this answer
Did that way. Thanks. – Piotr Jan 13 at 13:59
feedback

Your Answer

 
or
required, but never shown

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