Hi TreKing, I have plot multiple markers on the google map using below. http://developer.android.com/resources/tutorials/views/hello-mapview.html
Now I want to display information of the clicked marker in the rectangle which has TextView and two images(Which contains Click event through i can go to the other screen) I dont want to left the google map. On the google map it will show as Custom dialog. I can get which Item is clicked through onTap event. It works fine when I use with Toast but not for Custom Dialog. When I tried to display custom dialogbox it gives me RunTime error (Force Close). How can I show my customDialog on the click of the marker? Please respond. On Jan 26, 6:27 pm, TreKing <[email protected]> wrote: > Derive from the Overlay class and override the draw method to draw what you > need. In this case, you can simply draw two circles. One for your center > point, and one for your radius. You can figure out how big the latter needs > to be using the Projection in the MapView object to convert distance to > screen pixels. Finally just add an instance of your new Overlay to the map > view you're using. > > --------------------------------------------------------------------------- > ---------------------- > TreKing - Chicago transit tracking app for Android-powered > deviceshttp://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

