我想让功能在按ESC退出全屏模式后返回全屏模式。有什么方法可以返回全屏吗?例如,要执行全屏模式,我使用如下方法@Overridepublic void init(Controller controller) { sound.backgroundMusic(); menuButtons = new ArrayList<>(); createSubScenes(controller); createButtons(controller); createBackground(); createLogo(); controller.setScene(mainScene);}public void setScene(Scene scene) { Platform.runLater(() -> stage.setScene(scene)); Platform.runLater(() -> stage.setFullScreen(true));}在舞台中,当我按 ESC 时,舞台退出全屏。 在此处输入图像描述在此处输入图像描述然后在这个阶段,我希望回到全屏模式。
1 回答
心有法竹
TA贡献1866条经验 获得超5个赞
使用以下命令防止使用ESC(或任何其他键) 退出全屏:
stage.setFullScreenExitKeyCombination(KeyCombination.NO_MATCH);
如果您不是全屏,请创建一个侦听器或方法以进入全屏执行:
stage.setFullScreen(true);
添加回答
举报
0/150
提交
取消