Hello,
I have a list of GUI nodes that I want to display, there are ~60 of the.
Each node contains other nodes (several texts, one image).
I’m using Druid library to handle the scrolling.
On my device, the performance is really poor, it’s lagging as soon as I start scrolling.
What is the best practice for optimising performance?
Should I check if a GUI node is visible in screen, and therefore enable/disable it?
Should I “recycle” the nodes? (Similar to list adapters in native Android)
Would like to know what the trick is to display long scrollable lists.
Thanks