[android-developers] Re: How to capture ACTION_MOVE MotionEvents in a view

2009-02-02 Thread Dianne Hackborn
That is because returning true says that you consumed the event and thus the rest of the events in that motion will be dispatched to that view. On Mon, Feb 2, 2009 at 6:30 PM, hbk723 wrote: > > I couldn't get it either, no matter what I did on the phone or in the > emulator all I get is ACTION_

[android-developers] Re: How to capture ACTION_MOVE MotionEvents in a view

2009-02-02 Thread hbk723
I couldn't get it either, no matter what I did on the phone or in the emulator all I get is ACTION_DOWN, never ACTION_MOVE or ACTION_UP. HOWEVER, changing the return statement of onTouchEvent() to "true" fixed it for me. Frustrating! --~--~-~--~~~---~--~~ You recei