I have to implement design in this Mockup, my List will fetch real time data from server and cache it.
The list will contain large images and up to 1000s of items.
- User will set the limit.
- Images can be of any size in MB or of any Resolution.
- I will definitely re-size images if too large.
While scrolling up and/or down, the list should load data cached(stored) locally or download from server.
Since such huge list will require a lot of memory and processing (which is not available on mobile devices), I need to apply very well optimized design pattern.
Questions
Can anyone please suggest any Design pattern for this?
How would you implement this?
Relevant question: List View Design Pattern