Hello All,
I set the modeofBitmapresources to compressed, that means all the images used by my project are compressed.
When I switch different screens, the Ram used is always increased until i go though all the pages. Seems I switch from one page to another, the previous compressed images are not released.
I checked the explanation for compressed as below. Does that means all the images once decompressed will be always maintained in Ram, and never be released? More images used more additional ram needed? Thanks.
"Compressed: The bitmap pixel information is stored in compressed format. This mode requires the pixel information to be decompressed when the bitmap is used at the runtime. The decompressed bitmaps are maintained in bitmap cache occupying additional RAM. On the other hand, compressed bitmaps have less impact on the code segment size (the application requires less ROM or flash memory)."