I read the system tray tutorial and this similar Stack Overflow question but can't find a good answer. I want to add an image to menu item in J2SE application. In the tutorial, MenuItem is used, but I couldn't find how to add icons to menu items in SystemTray pop up. If JMenuItem is used, icons can easily be placed in MenuItems, but there is MenuItem. How can I add an image to my system tray popmenu?

*Updated*Here, I want to add an image to MenuItem in the popup menu(not to the SystemTray.)

link|improve this question

66% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You can use a JPopupMenu with your TrayIcon (read here).

trayIcon.addMouseListener(new MouseAdapter() {
        public void mouseReleased(MouseEvent e) {
            if (e.isPopupTrigger()) {
                jpopup.setLocation(e.getX(), e.getY());
                jpopup.setInvoker(jpopup);
                jpopup.setVisible(true);
            }
        }
    });
link|improve this answer
Thanks Jeffrey.It worked well.There was a problem which is the JPopmenu remained even after the mouse left the JPopup.I could comeup with it by adding a mouseListener.(if mouse exited, then JPopup is invisible. :) ). Thanks again – Aash Maharoon Jan 15 at 5:26
feedback

SystemTray have gor implemented simple syntax

TrayIcon(Image, "Narrative", JPopupMenu);

there no required add any additional Listener for displaying JPopupMenu

link|improve this answer
Umm, no there isn't. docs.oracle.com/javase/7/docs/api/java/awt/TrayIcon.html – Jeffrey Jan 14 at 18:05
@Jeffrey that isn't reall issue, that about quality of Oracle's Java7 API, and reason why use Sun's Java6 API, in some cases equals suicide to read that, btw J2SE application (<= Java5) hasn't implemented SystemTray or TrayIcon, only via JNI (maybe by implement one Jack Daniels is possible some woodoo with JNA & Runtime.exec()) – mKorbel Jan 14 at 18:32
I was commenting on the lack of a TrayIcon(Image, String, JPopupMenu) constructor. TrayIcons can only take PopupMenus as of Java 7. – Jeffrey Jan 14 at 23:13
Thanks mKorbel.I think that I had to explain more on my question.and I updated.I want to add an image to the MenuItem of the popup menu in SystemTray and not Image to the systemTray. – Aash Maharoon Jan 15 at 4:38
are you sure because i can't found what you talking about – IMAnis_tn Apr 19 at 22:21
feedback

Your Answer

 
or
required, but never shown

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