Click Listener for Info Window Google Maps V2
问题 I have a simple "Place" class: public class Plac{ String name; int id; LatLng latlng; public Product(String name, int id, LatLng latlng) { this.name = name; this.id= id; this.latlng = latlng; } } and I'm adding "Places" to an ArrayList like this: ( Note the names are not unique) ArrayList<Place> places = new ArrayList<Place>(); places.add(new Place("McDonald's", 1)); places.add(new Place("McDonald's", 2)); places.add(new Place("McDonald's", 3)); I'm adding markers to my Google Map like this: