custom listview adapter getView method being called multiple times, and in no coherent order
- by edzillion
I have a custom list adapter:
class ResultsListAdapter extends ArrayAdapter<RecordItem> {
in the overridden 'getView' method I do a print to check what position is and whether it is a convertView or not:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
System.out.println("getView " +…