You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Again, going off of the "move fast and break things", I remember there are significant portions of the code where ListView were not used in favor of naively iterating through the list and adding views. This is extremely inefficient and should be replaced for better performance and memory.
A good substitute would probably be a RecyclerView with custom adapters, or even an ListView (more rigid and less flexible).
The text was updated successfully, but these errors were encountered:
Again, going off of the "move fast and break things", I remember there are significant portions of the code where ListView were not used in favor of naively iterating through the list and adding views. This is extremely inefficient and should be replaced for better performance and memory.
A good substitute would probably be a RecyclerView with custom adapters, or even an ListView (more rigid and less flexible).
The text was updated successfully, but these errors were encountered: