Hi, I have an app that in every session downloads a bunch of bitmaps from internet, and in order to not run out of memory by having all of them in memory, I write them to disk, and when I want to display them I just read them.
So, I need this read to be as fast as possible (I use a Custom ListView, so the user may want to scroll very fast)
In every session there are about 16mb in images. I assume that DirInternal IS faster than DirExternal, due to the fact that the internal storage comes with the phone, and the external is an sdCard.
I would like to know if this DirInternalCache is a special Cache memory that is really optimized to fast read/write request, or is just as fast as the DirInternal memory?
So, I need this read to be as fast as possible (I use a Custom ListView, so the user may want to scroll very fast)
In every session there are about 16mb in images. I assume that DirInternal IS faster than DirExternal, due to the fact that the internal storage comes with the phone, and the external is an sdCard.
I would like to know if this DirInternalCache is a special Cache memory that is really optimized to fast read/write request, or is just as fast as the DirInternal memory?