I have an app that downloads 15+ bitmaps and converts each one to byte arrays and stores them to a sqlite database (along with other data). Once the app is started again, it uses the sqlite info as a 'cached' version. It then converts the byte array back to a bitmap and shows them in a listview. My problem is, I can't find a good Lazy Loader to display the bitmap, they all uses urls to display. Any advice on how to make my app operate smoothy?
UPDATE: The app is a news reader and it stores all the article info (title, image, text etc..) to sqlite so when the device goes offline or the user saves an article for offline reading they can still access the article without internet.