相当于 Java Swing 中 Android 的 Toast 或 Mac OSX Growl 吗?
寻找一种在 Swing 应用程序中显示瞬态、非模式对话框的方法。换句话说,我想弹出一个半透明的框,其中包含一些可以立即消除的文本,或者会在设定的时间内消失。有图书馆可以做到这一点吗?如果轮子已经存在,我不想重新发明轮子。
咆哮截图: Android Toast 截图:
(来源:devx.com)
Looking for a means of displaying transient, non-modal dialogs in a Swing application. In other words, I'd like to pop up a semi-transparent box with some text in it that can be immediately dismissed, or will fade away in a set amount of time. Is there a library to do this? I don't want to reinvent the wheel if it already exists.
Growl screenshot:
Android Toast screenshot:
(source: devx.com)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此链接提供有关使用 Swing 的“半透明形状的 Windows”的信息,尽管它没有提供完整的源代码(但幻灯片解释了为了实现这一目标必须做什么)。他基本上使用 JNA 来避免重新绘制半透明窗口的问题,并使用两个库来轻松添加淡入淡出等支持。
This link provides information about "translucent shaped Windows" using Swing, though it does not provide the full sourcecode (but slides explaining what has to be done in order to achieve this). He basically uses JNA to avoid problems with repainting translucent windows and makes use of two libraries to easily add fade etc. support.