TextTooltip
有一个构造函数,您可以在其中给出
ToolptipManager
.
在
TooltipManager
你有一个功能
instant()
调用此方法后,工具提示将立即显示。
https://libgdx.badlogicgames.com/ci/nightlies/docs/api/com/badlogic/gdx/scenes/scene2d/ui/TooltipManager.html
以下是立即出现的工具提示示例:
TextButton textButton = new TextButton("The Button", skin);
TooltipManager tooltipManager = new TooltipManager();
tooltipManager.instant();
textButton.addListener(new TextTooltip("This is the tip ! Why it is not shown ?", tooltipManager, skin));
textButton.setPosition(0,0);
textButton.setSize(5,5);
stage.addActor(textButton);
Gdx.input.setInputProcessor(stage);