Reputation: 71
I need to create a photo feed layout for android similar to instagram's. What is the best layout to use as the parent? A TableView or a ListView? Something else? Also how does Instagram not run out of memory loading so many photos at once?
Upvotes: 1
Views: 1711
Reputation: 631
GridView does what you are looking for, and is fed by a ListAdapter. This will also handle recycling views to manage memory.
Upvotes: 1