I'm new to android and need help with best examples which shows asynchronous image listing(set of images ). And interested to know the concept of image caching . How can we use low memory for image listing ?
Asked
Active
Viewed 326 times
2
-
3try lazy list view for an example of how to cache images and display it from net - asynchronously – Athul Harikumar Sep 07 '12 at 06:28
-
@droidhot thnku ..nice recommendation.. – Arun M R Sep 07 '12 at 07:04
-
[Reference](http://stackoverflow.com/q/541966/1050058) – Trung Nguyen Oct 04 '12 at 15:49
2 Answers
1
See the developers documentation, it shows some options to manage images:

Victor de Francisco Domingo
- 616
- 7
- 14
-
If you have questions after read that deeply (I hope that), comment ; ) This is a interesting issue with no easy solutions – Victor de Francisco Domingo Sep 07 '12 at 07:30
-
one simple ques ..I have some json/xml encoded data (like 10 image url's)..You have any idea how can i insert that data in to array dynamically?(I have no idea about the size of data :) ) – Arun M R Sep 07 '12 at 09:02
-
If data comes from json/xml, then you need to parse that json/xml and build your data model. You must know the structure of the json/xml and then develop a parser. Can you write here a sample of the json/xml you receive? – Victor de Francisco Domingo Sep 07 '12 at 09:53