Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a layout where one imageView want dynamically load an image from drawable files. I want this I have a certain size imageView whatever drawable image, so you need to assign a size to upload. I searched the android developers but I've only seen functions to set the maximum height and width, but ir doesn't works.

I put the code:

image = getIntent().getExtras().getString("image");

ImageView paper = (ImageView)findViewById(R.id.imageView1);
Resources res = getResources();
int id = getResources().getIdentifier(image, "drawable", getPackageName());
Drawable drawable = res.getDrawable(id);
paper.setImageDrawable(drawable);

Can you help please? thank you very much

share|improve this question

1 Answer

up vote 0 down vote accepted

You can use

Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);

and retrieve it on the other end:

Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");

//  bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
bitmap = Bitmap.createScaledBitmap(bitmap, 250, 250, true);
img.setImageBitmap(bitmap);
share|improve this answer
if i use a bitmap y should replace drawable for bitmap no? – user2070274 Feb 23 at 23:36
can you write the complete code? i don't understand that you say .... – user2070274 Feb 23 at 23:40
Updated answer ;), please accept if it suits you – Adam Fręśko Feb 23 at 23:41
thank you, but i obtain the name of the R.drawable.____ from the result of the function getIntent().getExtras().getString("image"). how can i replace the string image in this function bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image)? Can i delcare String path = "R.drawable.image" and call bitmap = BitmapFactory.decodeResource(getResources(), path) this way? – user2070274 Feb 23 at 23:48
If the image exist it would be better to pass uri in intent – Adam Fręśko Feb 23 at 23:54
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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