Android:为什么使用图像按钮?
警告:我是菜鸟,所以这可能不是一个“常规问题”。
我的问题: 在 Android 中,不使用图像按钮,而是使用图像,设置 clickable=true,然后也使用 onClick,这不是一样的吗?
那不是一样吗?或者我错过了什么?
我的 Google Ventures 给我的唯一东西是你可以有不同的状态 onPressed、onReleased 等,但这也可以通过 java 代码轻松完成。
我缺少什么?
谢谢!
Warning: I am a noob so this might not be a "regular question".
My question:
Instead of using an imagebutton in Android isnt it the same to use an image, make clickable=true and then use that onClick as well?
Isnt that the same? Or am I missing something?
The only thing my google ventures has given me is that you can have different states onPressed, onReleased etc but that too can easily be done via the java code.
What am I missing?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与使用基本 View 类相比,ImageButton 使您可以更好地控制如何显示图像。
ImageButton gives you more control on how to display the image than if you were using the base View class.