How to set the dismiss delay for the tooltip

已回答

We can enable over own CustomTooltip using TooltipManager but IdeTooltipManager also showing along with the custom tooltip.

and we cannot able set the dismiss delay or hide for the tooltip through IdeTooltipManager

0
If you create a CustomTooltip for a specific JComponent it's possible to set the dismiss delay for the specific tooltip with:
jComponent.putClientProperty(IdeTooltip.TOOLTIP_DISMISS_DELAY_KEY, msDelay)
where msDelay is an Integer value in milliseconds.
0

请先登录再写评论。