My problem is to show an imagen into a listview readed from JSON, I read a lot of posts about the issue but no one solved it completely. I cathc the url with String imagen = e.getString("img_preview_1");
then added it into
HashMap<String, String> map = new HashMap<String, String>();
map.put("imagen", imagen);
This is my adapter with a String and the image
ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.activity_videos_categoria,
new String[] { "title", "imagen" },
new int[] { R.id.from , R.id.imageView1});
setListAdapter(adapter);
I tried chenging the type in the Map asn Object but still same problem
The error in LogCat is resolveUri failed on bad bitmap
Thank you