Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have set an image for an ImageView using the setImageResource(R.drawable.icon1).

Now my requirement is to find out what is the image that is set for an ImageView and do some processing.

Like

if (imageView.getImageResource() == R.drawable.icon1) {
  //do some processing
else if (imageView.getImageResource() == R.drawable.icon2) {
  //do somethign else
else 
 //display

So I would like to know if there exists a method(AFAIK, it doesn't) and if it doesn't how to keep a track of what resources have been set for an ImageView.

Thanks. Sana.

share|improve this question
Why not just do it yourself, if you're the one doing the setting? – Yuliy Jun 15 '11 at 1:55
I don't understnad what you want to convey. Can you explain. – Sana Jun 15 '11 at 2:01
I'm suggesting just storing the ID of the image you set into the imageView in some other location when you set it, as Joe suggested. – Yuliy Jun 15 '11 at 4:57
The think is I am setting ids of 'n' number images. So I don't know how many ids I have to keep track of, so I just wanted if Android could give me the ids of View that is clicked. – Sana Jun 15 '11 at 20:10

3 Answers

up vote 3 down vote accepted

You're assuming that because you put an integer in, you are able to get an integer back out, and that's not how setImageResource() works. See ImageView#setImageResource(). This is just a convenience method for you: what Android is doing behind the scenes, is looking up the Drawable resource (in most cases, it's a BitmapDrawable, but it could be any type), and then applying that resource to the ImageView as a Bitmap object (i.e., image data only -- it does not have any idea what its original "resource id" was previously).

Your best solution is going to be keeping track of the last resource id you used:

imageView.setImageResource(R.drawable.image1);
this.mLastResourceId = R.drawable.image1;
// ...

// Later, when checking the resource:
if (this.mLastResourceId == R.drawable.image1) {
    // Do something
}
share|improve this answer

Another alternative, if possible, would be to subclass the ImageView and store the integer in an overridden setImageResource().

public class MyImageView extends ImageView  {
  int rememberId = -1;
  @override void setImageResource(int resId){
    rememberId = resId;
  }  
  int getMyResId(){
    return rememberId;
  }
}
share|improve this answer

You should be able to use Bundle and set whatever properties you need.

Intent i = new Intent();      
Bundle extras = new Bundle();
      i.putExtra("prop", "value");
share|improve this answer
Huh? You must be thinking of the imageView.setTag(Object) method instead. – dmon Jun 15 '11 at 4:00

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.