触摸屏时如何保留onTouchEvent?

发布于 2024-10-18 20:38:03 字数 571 浏览 5 评论 0原文

当我触摸屏幕时,我有以下方法来处理:

public boolean onTouchEvent(MotionEvent event) {

    boolean touchDown = true;
    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            Log.i(TAG,"touching the screen: YES");
        case MotionEvent.ACTION_UP:
            touchDown = false;
            Log.i(TAG,"touching the screen: NO");
    }
    return touchDown;

}

当我触摸屏幕而不移开手指时,Logcat 的结果是:

touching the screen: YES
touching the screen: NO

我不想显示第二个日志,直到我从屏幕上释放手指。

我做错了什么?

谢谢。

I have the following method to handle when I touch the screen:

public boolean onTouchEvent(MotionEvent event) {

    boolean touchDown = true;
    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            Log.i(TAG,"touching the screen: YES");
        case MotionEvent.ACTION_UP:
            touchDown = false;
            Log.i(TAG,"touching the screen: NO");
    }
    return touchDown;

}

The result of the Logcat when I touch the screen without removing my finger is:

touching the screen: YES
touching the screen: NO

I don't want show the second log until I release myfinger from the screen.

What I'm doing wrong?

Thanks.

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

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

发布评论

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

评论(1

听风吹 2024-10-25 20:38:03

在第一个(和第二个)情况下,您需要一个 break; 。我也被这个刺痛过:)

You need a break; in your first (and second) case. I've been stung by that, too. :)

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