If you use the onCreate method, this is pretty simple:
ImageView iv = (ImageView) findViewById(R.id.itsId);
iv.setOnClickListener(this);
Then let your activity implement OnClickListenerand add an unimplemented method. finally add the behavior you need in the methodonClick()
Sephy source
share