[android-developers] Re: Handler for map panning

2009-04-28 Thread jgostylo
I am getting the panning recognition to work by overriding dispatchTouchEvent for MapView. I think I will just have to separate out the tasks and do the same thing for the zoom control On Apr 28, 6:03 am, jgostylo wrote: > Ok, I just tried to Override onDraw() in the MapView and it is a final >

[android-developers] Re: Handler for map panning

2009-04-28 Thread jgostylo
Ok, I just tried to Override onDraw() in the MapView and it is a final method so I can't do that. Then I saw onAnimationEnd() as inherited from View so I decided to Override that. I set a break point and pan around the map but the method never gets executed. I am still looking for a solution.