【发布时间】:2012-05-05 17:35:53
【问题描述】:
我想让我的系统尝试图标弹出气球消息,但它没有这样做。这是代码。如果满足了一个简单的 if 语句但没有任何反应,它应该会弹出。系统托盘图标可见,左键单击它会显示菜单。
package systemtray;
import java.awt.*;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Systemtray {
public static void main(String[] args) {
TrayIcon trayIcon = null;
if (SystemTray.isSupported()) {
// get the SystemTray instance
SystemTray tray = SystemTray.getSystemTray();
// load an image
Image image = Toolkit.getDefaultToolkit().getImage("D:/xxx/facebook.jpg");
// create a action listener to listen for default action executed on the tray icon
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
// execute default action of the application
}
};
// create a popup menu
PopupMenu popup = new PopupMenu();
//create menu item for the default action
MenuItem defaultItem = new MenuItem("A menu item");
defaultItem.addActionListener(listener);
popup.add(defaultItem);
/// ... add other items
// construct a TrayIcon*/
trayIcon = new TrayIcon(image, "Tray Demo", popup);
int a = 0;
int b = 1;
if (a + b == 1){
trayIcon.displayMessage("Message Title",
"Message Content",
TrayIcon.MessageType.INFO);
}
// set the TrayIcon properties
trayIcon.addActionListener(listener);
// ...
// add the tray image
try {
tray.add(trayIcon);
} catch (AWTException e) {
System.err.println(e);
}
// ...
} else {
// disable tray option in your application or
// perform other actions
}
// ...
// some time later
// the application state has changed - update the image
// if (trayIcon != null) {
// trayIcon.setImage(updatedImage);
//}
// ...
}
}
【问题讨论】:
-
在黑暗中拍摄,但您试图在图标添加到托盘之前显示一个气球。尝试将其添加到托盘中,然后显示气球。
-
谢谢,你是对的
标签: java system-tray trayicon