hey guyz how to apply action listener on Image view Plz help.
thanks alot.
hey guyz how to apply action listener on Image view Plz help.
thanks alot.
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