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 a ImageView in the layout, when i click on the image i want to get that image into a variable and replace with another image in this ImageView. please help me..

share|improve this question

2 Answers

up vote 1 down vote accepted

The onClick Listener will give you a View, that's the ImageView that was clicked. Cast it to an ImageView and do whatever you want with it.

share|improve this answer
1  
how to get image from the view – RajaReddy PolamReddy Sep 15 '11 at 4:53
Just as you do with every other ImageView, call its getDrawable(). – K-ballo Sep 15 '11 at 4:54
You decided to skip the part of my comment where I mention you should cast it to an ImageView... – K-ballo Sep 15 '11 at 5:02
Do a google search on casting then, which is a generic programming concept and not some Android related feature. – K-ballo Sep 15 '11 at 5:06

in this example i have take previous image in Drawable and replace i with new image. if you set any imageview to image which stay in drawable variable(d) then use :: setBackgroundDrawable(d); is useful

 public void onClick(View v){
   ImageView i;
        i = (ImageView) findViewById(R.id.img);
        Drawable d = i.getBackground();
        i.setBackgroundResource(R.id.secondImage);

   }
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.