I implemented a ImageCache. But I'm curious about what type to store in it will cost less.
Now I use BitmapFactory
to get the images from the internet, so I get a Bitmap
first.
Should I convert to a Drawable
to store in my ImageCache or just store the Bitmap is fine?
Any ideas?
Thanks.