我正在使用下面的代码来显示摇摆气球工具提示。它在windows中正常工作但在linux中无法正常工作。下面是我正在使用的代码。
public BalloonTip(JComponent attachedComponent, String text, BalloonTipStyle style, boolean useCloseButton, boolean drawOutsideParent)
我分析说这是因为最后一个参数'drawOutsideParent'。如果它是真的那么它将无法在linux中运行。如果为false,则在父窗口内打开工具提示。
如果工具提示在父窗口外打开会很好。请指教。