yourPISD / yourpisd

Android app to access myPISD (Plano Independent School District grades portal)
MIT License
2 stars 4 forks source link

RecyclerView and ListView #16

Open hanli1 opened 8 years ago

hanli1 commented 8 years ago

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