[android-developers] Re: Listening to Double Taps in MapView

2009-06-13 Thread Georgy
I was able to make it work but now the navigation on the map is not working. any ideas? thanks On Jun 12, 3:11 pm, Georgy georgearna...@gmail.com wrote: Would please provide me a copy of your code? I don't know why I can't gget it to work. thanks On Jun 12, 2:58 pm, Keith Wiley

[android-developers] Re: Listening to Double Taps in MapView

2009-06-12 Thread Keith Wiley
If I'm understanding you correctly, you *named* your handler method setOnDoubleTapListener(). That's not right. That's the callback setup method you call, passing it the object that you want called back to in the event of a double tap. The callback method is then some other name. In your

[android-developers] Re: Listening to Double Taps in MapView

2009-06-12 Thread Georgy
still it doesn't get the double taps... On Jun 12, 12:57 pm, Keith Wiley kbwi...@gmail.com wrote: If I'm understanding you correctly, you *named* your handler method setOnDoubleTapListener().  That's not right.  That's the callback setup method you call, passing it the object that you want

[android-developers] Re: Listening to Double Taps in MapView

2009-06-12 Thread Keith Wiley
Hmmm, I just added this functionality to my own project and it works like a charm. Let's see. To get this going you need a few things. The class that will receive your callback must implement the GestureDetector.OnDoubleTapListener interface, for which it must include implementations of

[android-developers] Re: Listening to Double Taps in MapView

2009-06-12 Thread Georgy
Would please provide me a copy of your code? I don't know why I can't gget it to work. thanks On Jun 12, 2:58 pm, Keith Wiley kbwi...@gmail.com wrote: Hmmm, I just added this functionality to my own project and it works like a charm. Let's see.  To get this going you need a few things.  The