RecyclerView Flashcards

1
Q

What is the Recyclerview

A

RecyclerView is a library, containing a class by the same name, that facilitates the efficient and dynamic display of large sets of data on a screen when they are needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does the RecyclerView work?

A

RecyclerView recycles the individual elements, for instance, when an item scrolls off the screen, RecyclerView doesn’t destroy its view, instead, it reuses the view for new items that have scrolled onscreen.

The data should be supplied in a defined way that determines how each item looks like. The RecyclerView does not determine the source or the formatting of the items.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the benefit of the RecyclerView

A

This reuse in a great way improves performance, improving an application’s responsiveness and reducing power consumption.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly