检测 imageView 的哪一部分被触摸?

发布于 2024-12-10 15:58:45 字数 40 浏览 0 评论 0原文

是否可以在 Android 上检测图像的哪一部分(右、左)被触摸?

Is it possible to detect on android what part of an image (right, left) was touched?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苏佲洛 2024-12-17 15:58:45

当然,附加触摸监听器将允许您处理包含实际触摸位置的 MotionEvent;只需执行类似 if(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 if(event.getX() < image.width / 2) { // touch on left } else { // touch on right; }

安穩 2024-12-17 15:58:45

如果您使用 TouchEvent,您可以获得触摸的 x 和 y。

If you use TouchEvent you can get the x and y of the touch.

青萝楚歌 2024-12-17 15:58:45

或者你在 ImageView 后面放 2 个按钮,然后直接包含点击处理程序

Or you put 2 buttons behind your ImageView, then you have the click handler included directly

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文