Android – action listener on image view

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
分享
二维码
< <上一篇
下一篇>>