I am trying to make some clickable map overlays that trigger a new screen to appear when a user taps on the markers. I have a mapview setup that creates markers using the ItemizedOverlay. Inside of ItemizedOverlay I override onTap(), I know that this work when clicking on the markers. How can I create a new screen from within ItemizedOverlay?
I am having trouble because I cannot use startActivity() since Activity is not extending, ItemizedOverlay is.
Any ideals?
Thanks.


