如何在google maps API V2 Android中将图像添加到标记的InfoWindow中?

时间:2013-05-15 18:59:33

标签: android google-maps google-maps-markers infowindow

我有这个

 mapa.addMarker(new MarkerOptions()
                       .position(latlng)
                       .title("HI")
                       .snippet("HI;HI")
           .icon(BitmapDescriptorFactory.fromResource(R.drawable.same)));

但没有找到如何添加到infowindow图标的信息 有人可以帮助我吗?

1 个答案:

答案 0 :(得分:5)

您需要create your own InfoWindowAdapter并使用getInfoContents()getInfoWindow()返回包含您所寻找图片的信息窗口内容。