使用 Java 闪烁任务栏(洋泾浜语言 || MSN)

发布于 2024-08-25 21:45:40 字数 154 浏览 5 评论 0原文

我正在寻找正确方向的推动力。我有一个简单的聊天程序,完全用 Java 编写,并且正在寻找一种使任务栏图标闪烁的方法。最好以类似于 Pidgin 或 MSN 的方式。

我希望有一个独立于平台的解决方案,因为既有 Linux 也有 Windows 用户,而且最好完全使用 Java。

I'm looking for a push in the right direction. I have a simple chat program, written totally in Java, and am looking for a way to get the Taskbar icons to flash. Preferably in a manner similar to Pidgin, or MSN.

I'm hoping for a platform independent solution, as there are both Linux and Windows users, and preferably totally in Java.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满地尘埃落定 2024-09-01 21:45:40

不幸的是,在标准 Swing API 中没有办法做到这一点。但您可以通过多种方式解决它:

  • 闪烁窗口的图标和标题(设置计时器并在触发时更改它们)。
  • 请求焦点,然后立即使窗口不可见;按照您喜欢的时间间隔反转该过程。

此 forums.sun.com 主题中演示了这两种技术。

或者,您可以使用 TrayIcon.displayMessage();这可能更适合您,也可能不适合您,但请注意它可能无法跨平台工作。

There is unfortunately no way to do this in the standard Swing API. But you could work around it in several ways:

  • Flash the icon and title of the window (set a timer and change them whenever it fires).
  • Request focus, then immediately make the window invisible; reverse the process at your preferred interval.

Both techniques are demonstrated in this forums.sun.com thread.

Alternatively, instead of flashing, you could display a message in the system tray using TrayIcon.displayMessage(); that may or may not suit you better, but beware that it may not work cross-platform.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文