How do I put a picture inside a infowindow in my android application running with google maps?
Marker melbourne = mMap.addMarker(new MarkerOptions()
.position(MELBOURNE)
.title("Melbourne")
.snippet("Population: 4'137'400"));
That's how I add some Text but I don't know how to put an image in it. And furthermore, where do I have to save it?
So far, my app works but only without an image.
/Thanks