On Wed, May 5, 2010 at 8:57 PM, karthik k <[email protected]> wrote: > I'm unable to implement the methods inside the onTap() so that upon i click > the androidmarker icon on the map, it tells me some cavvas popout layout > being transparent with some text(substantially, even that canvas layout is > clickable and takes to another activity). >
A MapView is a ViewGroup like any other - you can add other views to it at any point. Unique to MapView are layout params that let you place views based on map coordinates. It's a simple matter of defining the layout you want to show, inflating it on tap, and adding it to the MapView at the correct location. ------------------------------------------------------------------------------------------------- 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 Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

