我一直在使用此代码手动将屏幕设置为我的显示器像素尺寸:
public static void main(String[] args) {
Game game = new Game("ColoursAndShapes", 1920, 970);
game.start();
}
我想找到一种方法在任何监视器上将JFrame设置为全屏,但考虑到我的“Game”类包含其他方法和变量,我无法从此启动器代码中删除它。
答案 0 :(得分:1)
JFrame JFrame = new JFrame();
frame.setExtendedState(JFrame.MAXIMIZED_BOTH); frame.setUndecorated(true);
frame.setVisible(true);