Reputation: 2948
I have a simple recyclerView. When scrolling, items are getting fetched from a Room Database and being added to the recycler's list.
I wondering how many items can be added before throws OOM?
Is there any way to control this? Example: In instagram's search section you cant scroll down forever right?
Upvotes: 0
Views: 286
Reputation: 22832
RecyclerView
creates limited number of views, then populate them by your data. So, there is no limits to show the items until some problems happened like reaching the Integer
MAX_VALUE (because of containing list position), etc...
Upvotes: 1