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!

link|improve this question

66% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Parse int intended for parsing strings like "0", "100" etc and has nothing to do with what you're trying to achieve. You have to use the drawable id directly:

holder.icon.setImageResource(R.drawable.icon);

If for whatever reason you can't use the constant, correct way to get the drawable id would be:

Context context = getContext(); //obtain a context
int drawableId = context.getResources().getIdentifier("icon", "drawable", context.getPackageName());

But that's not a good practice at all and idicates that you have problems with your app design.

link|improve this answer
The problem is that I have a lot of photos, and I don't want to manually put them in an array. Is there a better way to do that,perhaps using their names and get the ID that way? – tofira Mar 3 '11 at 7:21
@tofira well in that case use the getIdentifier method as I described. – Konstantin Burov Mar 3 '11 at 13:04
1  
+1 Nice One.This helped me in case where my image names comes from database. – Shashank_Itmaster Jan 9 at 8:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.