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 an ImageView that can have either of two images ( say image 1 & image 2, stored in drawable). If ImageView contains image1 I want click on that ImageView to be disabled and if image 2 is being displayed, on click image should change to image1 & click is disabled on ImageView.
I am unable to find way to know which image is currently being displayed on ImageView.

This is my code

ImageView select = (ImageView) view.findViewById(R.id.select); 
select.setOnClickListener(new OnClickListener() { 
public void onClick(View v) { 
// TODO Auto-generated method stub 
} 
});
share|improve this question
Can you share what have you done so far? – 13hsoj Oct 22 '12 at 13:46
ImageView select = (ImageView) view.findViewById(R.id.select); select.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub } }); – vaibvorld Oct 22 '12 at 13:48
in listener how to know which image is currently being displayed in imageview (given id as select). – vaibvorld Oct 22 '12 at 13:49

2 Answers

I think the cleanest approach to that would be to keep track of this state separate from the UI, and have the UI reflect the state you're interested in. I.e., if it's an Enabled/Disabled representation, keep track of whether this is enabled in a boolean with a proper setter method, and have that method update the UI. This may also be a good application for StateListDrawable.

share|improve this answer

Maybe you could consider creating your own View that extends CompoundButton. The checked state would be an image and the non-checked state the other.

share|improve this answer

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.