Android listview using ViewHolder
Change your code at below. I think you’re missing that. public class AlphabeticalAdapter extends ArrayAdapter<String> { int layoutResourceId; private final Context context; private List<String> data; private List<String> tags; private ProgressDialog mProgressDialog; private ImageView downloadImageButton; public AlphabeticalAdapter(Context context, int resource, List<String> data) { super(context, resource, data); this.layoutResourceId = resource; this.context = context; this.data = data; tags … Read more