My app will use DataDroid for REST client queries. Some ListViews in the app will display data with profile pictures, and these pictures are not downloaded with REST / as JSON. They are direct binary HTTP downloads. The only thing that is REST queried from the server and stored with reference to the pictures, is each picture's download URL.
For proper caching, the images are downloaded in a LRU caching mechanism with layers of disk caching and memory caching.
I'm thinking this picture loading/caching could still go via DataDroid's RequestService and Operation etc.
My question is: what would be a good way to do this in combination with DataDroid?
Besides this question, the following link gave me some ideas on how asynchronous loading and displaying of images could be done nicely: (not perfect, but useful ideas)