ListView - getView is called too much times

前端 未结 1 1496
无人及你
无人及你 2020-12-03 22:21

I know there are few questions regarding this issue of \'getView called few times\' but my problem is little different.

I have a custom listView with custom row ( us

相关标签:
1条回答
  • 2020-12-03 22:46

    Quoting android engineer RomainGuy

    This is not an issue, there is absolutely no guarantee on the order in which getView() will be called nor how many times.

    So the best you can handle is re-using the existing views (row layouts) properly.

    Here is another good post.

    0 讨论(0)
提交回复
热议问题