Android Listview With Images From Special Hashmap
I try to handle a hashmap to show a listview with images. I search for an answer like here: How to display Images in ListView android. But it doesn't work... My Code is: for (int i
Solution 1:
This is very common question and you could google example. What I can tell you for sure it is WRONG to store your images in memory, as you can get OutOfMemoryException.
To learn how to work with images and cache visit Displaying Bitmaps Efficiently
Post a Comment for "Android Listview With Images From Special Hashmap"