Picasso loads into wrong imageview when using view holder pattern
问题 I'm trying to use the Picasso library to load external images into rows in a ListView . I have a custom ArrayAdapter as follows: public class RevisedBusinessesAdapter extends ArrayAdapter<HashMap<String, String>> { Context context; int layoutResourceId; ArrayList<HashMap<String, String>> data = null; public RevisedBusinessesAdapter(Context context, int layoutResourceId, ArrayList<HashMap<String, String>> data) { super(context, layoutResourceId, data); this.layoutResourceId = layoutResourceId;