On Mon, Apr 26, 2010 at 1:40 AM, Nithin <nithin.war...@gmail.com> wrote:

> I am doing the event in opTap() method.


onTap(...) will always be called when you tap on the map. You have to
call super.onTap(...), which returns true if you actually tapped something.

boolean onTap(...)
{
 if (super.onTap(...))
{
 // Do Stuff
 return true; // Handled the tap
}
return false; // Did not handle the tap
}

-------------------------------------------------------------------------------------------------
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to