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).
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).