Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

setImageResource from a string

Tags:

I would like to change the imageview src based on my string, I have something like this:

ImageView imageView1 = (ImageView)findViewById(R.id.imageView1);  String correctAnswer = "poland"; String whatEver = R.drawable+correctAnswer; imageView1.setImageResource(whatEver); 

Of course it doesnt work. How can I change the image programmatically?

like image 415
Badr Hari Avatar asked Jul 21 '11 21:07

Badr Hari


2 Answers

public static int getImageId(Context context, String imageName) {     return context.getResources().getIdentifier("drawable/" + imageName, null, context.getPackageName()); } 

use: imageView1.setImageResource(getImageId(this, correctAnswer);

Note: leave off the extension (eg, ".jpg").

Example: image is "abcd_36.jpg"

Context c = getApplicationContext(); int id = c.getResources().getIdentifier("drawable/"+"abcd_36", null, c.getPackageName()); ((ImageView)v.findViewById(R.id.your_image_on_your_layout)).setImageResource(id); 
like image 196
james Avatar answered Sep 28 '22 09:09

james


I don't know if this is what you had in mind at all, but you could set up a HashMap of image id's (which are ints) and Strings of correct answers.

    HashMap<String, Integer> images = new HashMap<String, Integer>();     images.put( "poland", Integer.valueOf( R.drawable.poland ) );     images.put( "germany", Integer.valueOf( R.drawable.germany ) );      String correctAnswer = "poland";     imageView1.setImageResource( images.get( correctAnswer ).intValue() ); 
like image 24
Noah Avatar answered Sep 28 '22 09:09

Noah