Computer Science, asked by drthdate1211, 1 year ago

What is the viewholder pattern? why should we use it?

Answers

Answered by varuncharaya20
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