custom listview adapter getView method being called multiple times, and in no coherent order

后端 未结 11 2331
情话喂你
情话喂你 2020-11-22 04:50

I have a custom list adapter:

class ResultsListAdapter extends ArrayAdapter {

in the overridden \'getView\' method I do a

11条回答
  •  面向向阳花
    2020-11-22 05:37

    "Why is getview called for each row three times?" Because getView is called when you scroll on listview and to say better then that it is called when the position of an view of your list is changed!

提交回复
热议问题