Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a simple Java swing app, which adds an icon to the system tray when created. What I'm trying to do is to detect when this icon is single clicked by the user (whether through left click or right click), There's no popup menu, I just want the app to be restored when the icon is clicked.

This is the code I'm using:

    SystemTray tray = SystemTray.getSystemTray(); 
    Image icon = toolkit.getImage("icon.png");

    ActionListener listener = new ActionListener()
    {
        public void actionPerformed(ActionEvent e)
        {
            System.out.println("click detected");
        }
    };

    TrayIcon trayIcon = new TrayIcon(icon, "Test Program", null);
    trayIcon.addActionListener(listener);
    tray.add(trayIcon);

What happens when I run this program though, is that single clicks (either left or right) have no effect, but when I double click, then it shows the message 'click detected' in the console.

What can I do to have single clicks also be detected? Do I need to use a MouseListener for this? ( I've heard that MouseListeners can cause problems, and ActionListeners are better)

share|improve this question
What platform? Windows? Linux? – Femi Sep 5 '12 at 4:16
@Femi Windows - – Click Upvote Sep 5 '12 at 4:16
2  
only 30k up_votes ???, +1 – mKorbel Sep 5 '12 at 7:12

1 Answer

up vote 4 down vote accepted

You could use MouseListener, ie:

icon.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
        if (e.getClickCount() == 1) {

        }
    }
}); 

See How to Write a Mouse Listener for more details.

EDIT: ActionListener vs MouseListener

There is a concept of low level and semantic events. Whenever possible, you should listen for semantic events rather than low-level events, such as listening for action events, rather than mouse events. Read for more details in Low-Level Events and Semantic Events.

In this case you just need more details from the event so using MouseListener is required.

share|improve this answer
Aren't there problems with MouseListeners and ActionListeners preferred? – Click Upvote Sep 5 '12 at 4:23
@ClickUpvote see if my last edit can clarify a difference between ActionListener and MouseListener. – Aqua Sep 5 '12 at 5:07
may also want to check if e.getID() == MouseEvent.MOUSE_CLICKED unless you want to respond to just the "mouse down" notification (which you might...) – rogerdpack Dec 19 '12 at 6:46
@rogerdpack mouseClicked is invoked when the mouse button has been clicked (pressed and released) on a component. – Aqua Dec 19 '12 at 23:56
ahh I was adding a mouse listener which reported all of them, ok thanks for clearing thatup. – rogerdpack Dec 20 '12 at 15:09
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.