tags:

views:

57

answers:

1

hey guyz how to apply action listener on Image view Plz help.

thanks alot.

A: 

If you are in your onCreate method, this is quite easy :

//create you ImageView :
ImageView iv = (ImageView) findViewById(R.id.itsId);
//set the listener
iv.setOnClickListener(this);

Then let your activity implement OnClickListener and add unimplemented method. finally, add the behaviour you need in the onClick() method

Sephy