[android-developers] Re: Galley of thumbnails from the web running out of memory

2010-02-03 Thread Jason Proctor
btw the in-memory size is much bigger than the size of the file. that 4k is the jpeg-compressed file size, in memory it would be 100x100x4 (32-bit colour) = 40k at least. but i would think you should be able to hold 10x 40k without any problems, so maybe something else is sucking a lot of memo

[android-developers] Re: Galley of thumbnails from the web running out of memory

2010-02-03 Thread Open
Thanks Jason- In my case the application needs to show all 12 images at the same size. I could switch to a listview but that will degrade the user experience. I have also been thinking about switching to a webview that loads a static HTML page containing all 12 thumbnails. Seems silly, but if I