简体   繁体   English

区分Java中的单击和双击

[英]Distinguish between a single click and a double click in Java

I search the forum and see this codes: 我搜索论坛并查看此代码:

            public void mouseClicked(MouseEvent e) {
            if (e.getClickCount() == 2) {
                System.out.println("  and it's a double click!");
                wasDoubleClick = true;
            } else {
                Integer timerinterval = (Integer) Toolkit.getDefaultToolkit().getDesktopProperty(
                        "awt.multiClickInterval");
                timer = new Timer(timerinterval.intValue(), new ActionListener() {

                    public void actionPerformed(ActionEvent evt) {
                        if (wasDoubleClick) {
                            wasDoubleClick = false; // reset flag
                        } else {
                            System.out.println("  and it's a simple click!");
                        }
                    }
                });
                timer.setRepeats(false);

                timer.start();
            }

        }

but the code runs incorrectly(Sometime it prints out " and it's a single click!" 2 times . It should print out " and it's a double click!"). 但代码运行不正确(有时它会打印出“而且只需单击一次!”2次。它应该打印出来“并且它是双击!”)。 Can anybody show me why? 任何人都可以告诉我为什么吗? or can you give me some better ways to do this? 或者你能给我一些更好的方法吗? Thank you! 谢谢!

Sometime it prints out " and it's a single click!" 有时打印出来“只需点击一下!” 2 times . 2次 。 It should print out " and it's a double click!"). 它应该打印出来“并且它是双击!”)。

That is normal. 这很正常。 A double click only happens if you click twice within the specified time interval. 如果在指定的时间间隔内单击两次,则仅发生双击。 So sometimes if you don't click fast enough you will get two single clicks in a row. 因此,有时如果你没有足够快地点击,你将连续两次点击。

Integer timerinterval = (Integer) Toolkit.getDefaultToolkit().getDesktopProperty("awt.multiClickInterval"); 

The above line of code determines how fast the double click must be. 上面的代码行确定了双击必须有多快。

For what its worth here is some code I have used to do the same thing. 因为它的价值在于我曾用过一些代码来做同样的事情。 Don't know if its any better or worse than the code you have: 不知道它是否比你拥有的代码更好或更差:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

public class ClickListener extends MouseAdapter implements ActionListener
{
    private final static int clickInterval = (Integer)Toolkit.getDefaultToolkit().
        getDesktopProperty("awt.multiClickInterval");

    MouseEvent lastEvent;
    Timer timer;

    public ClickListener()
    {
        this(clickInterval);
    }

    public ClickListener(int delay)
    {
        timer = new Timer( delay, this);
    }

    public void mouseClicked (MouseEvent e)
    {
        if (e.getClickCount() > 2) return;

        lastEvent = e;

        if (timer.isRunning())
        {
            timer.stop();
            doubleClick( lastEvent );
        }
        else
        {
            timer.restart();
        }
    }

    public void actionPerformed(ActionEvent e)
    {
        timer.stop();
        singleClick( lastEvent );
    }

    public void singleClick(MouseEvent e) {}
    public void doubleClick(MouseEvent e) {}

    public static void main(String[] args)
    {
        JFrame frame = new JFrame( "Double Click Test" );
        frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        frame.addMouseListener( new ClickListener()
        {
            public void singleClick(MouseEvent e)
            {
                System.out.println("single");
            }

            public void doubleClick(MouseEvent e)
            {
                System.out.println("double");
            }
        });
        frame.setSize(200, 200);
        frame.setVisible(true);
     }
}
 public void mouseClicked(MouseEvent evt) { 
   if (evt.getButton()==MouseEvent.BUTTON1){
    leftClick = true; clickCount = 0;
    if(evt.getClickCount() == 2) doubleClick=true;
    Integer timerinterval = (Integer)Toolkit.getDefaultToolkit().getDesktopProperty("awt.multiClickInterval");

               timer = new Timer(timerinterval, new ActionListener() {
                public void actionPerformed(ActionEvent evt) {  
                    if(doubleClick){
                        System.out.println("double click.");
                        sb = new StringBuffer();
                        sb.append("Double Click");
                        clickCount++;
                        if(clickCount == 2){                               
                            clickCount=0;
                            doubleClick = false;
                        }

                    } else {

                        sb = new StringBuffer();
                        sb.append("Left Mouse");
                        System.out.println("single click.");                           
                    }
                }               
            });
            timer.setRepeats(false);
            timer.start();
            if(evt.getID()==MouseEvent.MOUSE_RELEASED) timer.stop();
}           

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM