xml파싱으로 좌표가져와서 맵뷰위에 뿌리기 까지 성공했구요.

해당 마커를 클릭하면 말풍선이 나와서 마커이름이랑 주소가 나오게했구요.

그 말풍선을 클릭하면 해당하는 마커의 상세정보로 이동하려고 합니다.

 

 if(!parser.getAttributeValue(16).equals("") && !parser.getAttributeValue(17).equals("")){
        
        String name = parser.getAttributeValue(18);
        String add = parser.getAttributeValue(14);
        
        d_longitude = Double.parseDouble(parser.getAttributeValue(16));
        d_latitude =  Double.parseDouble(parser.getAttributeValue(17));

        point = new GeoPoint((int)(d_latitude*1E6), (int)(d_longitude*1E6));

        

        OverlayItem overItem = new OverlayItem(point, name, add);

 

        itemizedOverlay.addOverlayItem(overItem);
       }

 

이런식으로 overItem에 이름이랑 주소는 넘겨줬구요. 말풍선에 이름이랑 주소는 잘 나와요

그런데 onTap으로 말풍선 클릭하면 마커이름을 가져와서 인텐트로 다른 액티비티로 넘겨주려고 합니다.

어떤식으로 해야될까요 ㅠㅠ

어렵네요..