Javaで全画面表示する方法です。GraphicsDeviceのsetFullScreenWindow メソッドの引数に全画面表示させたいWindowオブジェクトを渡すことで実現できます。サンプルコードを以下に示します。 public static GraphicsDevice setFullScreen(Window window) { GraphicsDevice graphicsDevice = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice(); graphicsDevice.setFullScreenWindow(window); return graphicsDevice; // not necessary to return but... easy to reuse GraphicsDevice object after this method is called } 全画面表示を終了させるときは、GraphicsDeviceにnullをセットします。 GraphicsEnvironment .getLocalGraphicsEnvironment() .getDefaultScreenDevice() .graphicsDevice.setFullScreenWindow(null); 例えばこんな感じで使います。 public class FullScreenTest { @Test public void testFullScreen() throws Exception { JWindow window = createTestWindow(); window.setVisible(true); ...
IT関連の技術やプログラミングを中心に記事を書いています。ハードウェアも好きなので、日々のちょっとしたお役立ち情報も投稿しています。