android / views-widgets-samples

Multiple samples showing the best practices in views-widgets on Android.
Apache License 2.0
5.04k stars 3.01k forks source link

RecyclerView loads all items into memory #99

Open emrekilic opened 4 years ago

emrekilic commented 4 years ago

When we run the recyclerview sample on a device running on api level 22, we noticed that it loads all items into memory not just visible ones. This makes ui very slow and too many frames are skipping. In api level 23 and above devices do not have this problem and recyclerview only loads visible items into memory.