如何在Canvas中制作类似按钮的图片?
如何在 Canvas onTouch 上制作图片,就像按钮一样。只是为了媒体报道而已。我可以在Canvas中插入图片,现在我怎样才能让她onTouch呢?有人可以给我简单的例子吗?不要生气,因为这可能是愚蠢而简单的问题
谢谢
How to make picture in a Canvas onTouch, like a button. Just to be press and nothing else. I can insert picture in Canvas, now how can I make her onTouch? Can somebody pls give me easy exsample? Dont be mad, cuz this is probably stupid and easy question
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法将 onClick 或 onTouch 侦听器添加到使用画布绘制的内容。这些侦听器只能应用于视图。
另一种方法是将 onTouchListener 应用于视图,并查找触摸位置以查找触摸是否在图片位置。
You cannot add an onClick or onTouch listener to something you've drawn with the canvas. These listeners can only be applied to views.
Another method will be to apply the onTouchListener to the view, and find the touch position to find whether the touch was on the pictures position.