On Thu, Jan 28, 2010 at 10:58 PM, mapper <[email protected]> wrote:
> Yes Kevin is right. > I want the bubble/dialog which can show the information about that > marker and two images to go another Activity. > In that case you don't want to be showing a dialog, though I'm not sure why your code isn't working as posted. When you clicked an item, you know it's geo-location and it's image (drawable). So, based on that, you can: - Create, inflate, or re-use a view that is a "pop-up" styled as you'd like it (with the buttons and all that that you want) - Add this view to the MapView using the MapView.LayoutParameters that takes a geo-location and a vertical offset (among other params) to place it above the marker. ------------------------------------------------------------------------------------------------- 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

