检测 imageView 的哪一部分被触摸?
是否可以在 Android 上检测图像的哪一部分(右、左)被触摸?
Is it possible to detect on android what part of an image (right, left) was touched?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然,附加触摸监听器将允许您处理包含实际触摸位置的 MotionEvent;只需执行类似 i
f(event.getX() < image.width / 2) { // touch on left } else { // touch on right; } 的操作即可。 }
sure, attaching a touch listener will allow you to handle the MotionEvent, which contains the actual touch position; just do something like i
f(event.getX() < image.width / 2) { // touch on left } else { // touch on right; }
如果您使用 TouchEvent,您可以获得触摸的 x 和 y。
If you use TouchEvent you can get the x and y of the touch.
或者你在 ImageView 后面放 2 个按钮,然后直接包含点击处理程序
Or you put 2 buttons behind your ImageView, then you have the click handler included directly