I have a problem with putting different images in a list. I created a custom list and everything worked fine, except the images issue. My issue is with these line -
Integer p = Integer.parseInt("R.drawable.absolut");
holder.icon.setImageResource(p);
In the log I see the following error-
03-03 08:16:07.121: ERROR/AndroidRuntime(25486): java.lang.NumberFormatException: unable to parse 'R.drawable.absolut' as integer
What could cause this?
Thanks!