检测屏幕上onTouch事件发生的位置

发布于 2024-09-11 06:39:04 字数 103 浏览 2 评论 0原文

我在 Surfaceview 上有一个 onTouchEvent 布尔值,我在视图上绘制了 openGL 对象,我想知道是否有办法检测 onTouch 发生在屏幕上的位置?例如(x,y)坐标。

I've got an onTouchEvent boolean on a Surfaceview, I've got openGL objects drawn on the view and I'm wondering is there anyway to detect where on the screen the onTouch happened? e.g (x,y) co-ordinates.

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

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

发布评论

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

评论(2

爱格式化 2024-09-18 06:39:04

使用 event.getX() 和 event.getY() 假设您具有以下方法签名:

  public boolean onTouch(View view, MotionEvent event)

Use event.getX() and event.getY() assuming that you have the following method signature:

  public boolean onTouch(View view, MotionEvent event)
眼泪都笑了 2024-09-18 06:39:04

当您触摸屏幕时,您将获得该位置的 x,y 位置范围。
@覆盖
公共布尔 onTouchEvent(MotionEvent ev) {

    // Normal touch
                                    xPosition = ev.getX();
                yPosition = ev.getY();
        switch (ev.getAction()) {

        case MotionEvent.ACTION_DOWN:
                            {
                dx = ev.getX();
                dy = ev.getY();

                } 
        return ;
          }

when you touch the screen, you will get the that position x,y position range.
@Override
public boolean onTouchEvent(MotionEvent ev) {

    // Normal touch
                                    xPosition = ev.getX();
                yPosition = ev.getY();
        switch (ev.getAction()) {

        case MotionEvent.ACTION_DOWN:
                            {
                dx = ev.getX();
                dy = ev.getY();

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