我想让我的系统尝试图标弹出一个气球消息,但它没有这样做。这是代码。如果满足一个简单的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);
//}
// ...
}
}
答案 0 :(得分:3)
除非显示图标,否则无法显示弹出气球。您必须先显示图标(我假设您的代码中为tray.add
)。