安卓图像按钮
我想问一下Android编程中图片按钮的使用,简单的按钮也可以用按钮添加图片。如何生成图片按钮的点击事件?
I would like to ask the use of image button in Android programming when simple button can also add the image with the button. How can we generate click event of image button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
转到您的活动的 xml 布局并将此...属性添加到特定的 ImageButton...
android:onClick="--在这里只需写下您在 .java 中的方法名称--"
快乐编码!
Go to your activity's xml layout and add this...attribute to specific ImageButton...
android:onClick="--In here just write method name which you have in your .java--"
Happy Coding!
ImageButton继承自ImageView,与Button属性相比,有自己的属性。
您可以在这里查看属性,
http://developer.android.com/reference/android/widget/ImageButton.html
让你的activity实现OnClickListener,然后
在 OnCreate() 中或该事件之后。
使用 ,
在 onClick() 函数中你可以处理点击事件
ImageButton inherits from ImageView and has its own properties compared to Button properties.
you can check properties here,
http://developer.android.com/reference/android/widget/ImageButton.html
Make your activity implement OnClickListener, then
in OnCreate() or after that event.
use ,
in onClick() function you can handle the click event
这就是您获得点击事件的类型
This as this type you get click event