[android-developers] Re: How to detect Fling action in my widget

2009-03-18 Thread Meryl Silverburgh
Thanks. I have setup breakpoints for all OnGestureDetector methods. It did call onDown and I return true for the method. But onFling still did not get called. Any other idea? Thank you. On Wed, Mar 18, 2009 at 12:17 PM, Streets Of Boston wrote: > > Make sure you return the correct boolean-val

[android-developers] Re: How to detect Fling action in my widget

2009-03-18 Thread Streets Of Boston
Make sure you return the correct boolean-values in the other methods of your OnGestureDetector (onDown, onScroll, etc). On Mar 18, 2:51 pm, Meryl Silverburgh wrote: > Hi, > > Can you please tell me how can I detect Fling action in my own widget? > I have implemented my widget as OnGestureListene