If u are using eclipse import mapviewbaloons library into your project and than extend MyItemizedOverlay
public class MyItemizedOverlay extends BalloonItemizedOverlay<OverlayItem>
Your onTap will have to become onBaloonTap
@Override
protected boolean onBalloonTap(int index, OverlayItem item) {
String url = "someurl.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
c.startActivity(i);
return true;
}
Make sure that you add Context when you start activity in onBaloonTap() in this example c is Context
c.startActivity(i);