mpatten
mpatten

Reputation: 71

Android Photo stream layout like instagram

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

Answers (1)

PrplRugby
PrplRugby

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

Related Questions