What is the viewholder pattern? why should we use it?
Answers
Answered by
0
ViewHolder design pattern is used to speed up rendering of your ListView - actually to make it work smoothly, findViewById is quite expensive (itdoes DOM parsing) when used each time a list item is rendered, it musttraverse your layout hierarchy and also instantiate objects
Similar questions