2

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 ?

VendettaDroid
  • 3,131
  • 2
  • 28
  • 41
Arun M R
  • 41
  • 6

2 Answers2

1

See the developers documentation, it shows some options to manage images:

Android developers: displaying bitmaps efficiently

  • 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
0

see:

a example : https://github.com/tingzi/android-app

see2851
  • 627
  • 1
  • 9
  • 13