Android 지도 말풍선 클릭시 링크나 탭바 나오게 구현

MapPoint MARKER_POINT = MapPoint.mapPointWithGeoCoord(32,124);

    MapPOIItem marker = new MapPOIItem();
    marker.setItemName("A");
    marker.setTag(0);
    marker.setMapPoint(MARKER_POINT);
    marker.setMarkerType(MapPOIItem.MarkerType.BluePin); // 기본으로 제공하는 BluePin 마커 모양.
    marker.setSelectedMarkerType(MapPOIItem.MarkerType.RedPin); // 마커를 클릭했을때, 기본으로 제공하는 RedPin 마커 모양.

    mapView.addPOIItem(marker);

말풍선 클릭하면 링크나 탭바가 나오는 식으로 하는 구현을 어떻게 하나요?

도와주세요.

Interface MapView.POIItemEventListener 를 클래스에 implement 시킨 후에 unimplemented method를 추가하시면 void onCalloutBalloonOfPOIItemTouched()를 사용할 수 있습니다.