Can anyone help me how to put images in a hashmap?
I tried something like this :
HashMap<String, Object> map = new HashMap<String, Object>();
String img_1 = "<img src='http://graph.facebook.com/" + friends.get(i).getId()
+ "/picture?type=small' />";
map.put("item", Html.fromHtml(img_1));
map.put("friend", friends.get(i).getName());
System.out.println("Valoare HashMap este:" + map);
mylist.add(map);
but I see only the text, without image.
Please help....