PropertyCross
PropertyCross copied to clipboard
Introduce image caching
Introduce a memory cache so that when scrolling through a list view, images are not constantly re-downloaded as views are recycled.
This is an interesting point, as with HTML5 implementations you would no doubt get this for free.
With Windows Phone images that are fetched from a URL are cached for the lifetime of your application.
This feels like we might be delving a little too deeply into the specific details of a native OS.
@ColinEberhardt agreed - perhaps it's worth seeing if there are third-party libraries that this work can be offloaded to - that way it won't pollute the native code from its intentions (too much).
Holy hot off the press, Batman! http://www.senab.co.uk/2013/01/24/android-bitmapcache-v2-1/
Didn't https://github.com/tastejs/PropertyCross/pull/92 fix this?