I'm trying to set a Image on the ListView and I've written the adapter code and it seems to work fine, but the line of the to actually get the image is always giving an error about not being able to find an image.
The code to get the image is as follows,
Bitmap logo = BitmapFactory.decodeResource(MainActivity.this.getResources(), R.drawable.dm);
// creating new HashMap
HashMap<String, Object> map = new HashMap<String, Object>();
// adding each child node to HashMap key => value
map.put(TAG_BODY, id);
map.put(TAG_TITLE, name);
map.put(TAG_URL, uri);
map.put(TAG_TIME, dateFormated);
map.put(TAG_SITE, logo);
// adding HashList to ArrayList
productsList.add(map);
The code that then applies to ListView is
ListAdapter adapter;
adapter = new SimpleAdapter(
MainActivity.this, productsList,
R.layout.list_row, new String[] { TAG_BODY, TAG_TITLE, TAG_URL, TAG_TIME, TAG_SITE},
new int[] { R.id.id, R.id.headline, R.id.url, R.id.time, R.id.list_i});
// updating listview
setListAdapter(adapter);
and the error is
06-06 22:39:44.283 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.283 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.283 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.283 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.293 32407-32411/com.mystraldesign.aggregate D/dalvikvm: GC_CONCURRENT freed 276K, 22% free 10335K/13112K, paused 2ms+3ms, total 22ms
06-06 22:39:44.293 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.293 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.303 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.303 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.303 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.303 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.313 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.323 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.323 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri:
06-06 22:39:44.333 32407-32407/com.mystraldesign.aggregate E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /: open failed: EISDIR (Is a directory)
06-06 22:39:44.333 32407-32407/com.mystraldesign.aggregate I/System.out: resolveUri failed on bad bitmap uri: