Erik,

I tried your codes, the onScroll and onFling method are still not
being called.

On Oct 11, 7:10 pm, Erik Calissendorff <[EMAIL PROTECTED]>
wrote:
> Hi Kingtut,
>
> I believe that this code should work for you, I use this solution in
> my Activity:
>
> @Override
> public boolean dispatchTouchEvent(MotionEvent ev) {
>   boolean returnValue=false;
>   returnValue=returnValue | mGestureDetector.onTouchEvent(ev);
>   returnValue=returnValue | super.dispatchTouchEvent(ev);
>   return returnValue;
>
> }
>
> Good luck with the development.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to