Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making an application in which i take a picture from the camera and save in database by compressing in ByteArray but i have read that in if there is various large number of images than precessing of application may be slow by reading images from database so what is the best to store images (either in internal memory or sdcard) and display in ListView?

Thanks

share|improve this question

4 Answers

Save the image to your sdcard. The best approach is to use ImageCache.

cache image.

share|improve this answer

Storing images in your database will slow down your queries and is generally a bad idea overall.

See this SO question too.

share|improve this answer

The best way is to store images in SDcard with a separate folder. (Using internal memory wont be helpful as it would utilize the space required for installation of other application.)

Every time you load your application read the contents of the folder and populate your list. You need not to maintain seperate database for it. Use Caching Bitmaps for better performance of your code.

Best practice would be as per my opinion

  1. Make sure your cache uses SoftReferences, this way you can make sure that you don't run out of memory, and can always load new bitmaps on the "expense" of losing old ones.
  2. Use the Canvas' drawBitmap methods to draw the large-scale bitmaps smaller.
  3. Make sure you guard against OutOfMemoryError, and notice that it's a subclass of Throwable, and not a subclass of Exception, so a catch(Exception e) clause will not catch it.
share|improve this answer

Storing images in any databases is a bad idea, slow takes more space etc. Best option i know of is to store paths or links to those images in database and the actual files on some storage like sdcard or internal storage, if those pictures are big or will take significant amount of space i would place them on sdcard .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.