Android – action listener on image view
•
Android
How to apply an action listener on an image view
resolvent:
If you use the oncreate method, this is 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 methods. Finally, add the required behavior in the onclick () method
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码