Richa Laad
Richa Laad

Reputation: 259

Android Memory Managment

An applications performance depends on how the memory is being managed. As we do have limited memory on the android devices, then it becomes very essential to manage memory in a efficient manner.

I am building an application which has several images kept on the server. I need to show them in a list fashion. I am fetching images from server onto my sdcard and then displaying them in the list. But during this whole process i am get delay in the list display. It seems i am not able to manage memory properly.

Please suggest efficient memory management techniques.

Upvotes: 0

Views: 157

Answers (1)

Amandeep singh
Amandeep singh

Reputation: 1883

It is done through lazy loading in android and you should use onscrolllistener read this link Lazy Load images on Listview in android(Beginner Level)? and also http://github.com/commonsguy/cwac-thumbnail

Upvotes: 1

Related Questions