---
category: swing
folder: FullScreen
title: Windowのフルスクリーン化
tags: [GraphicsEnvironment, JFrame, JDialog]
author: aterai
pubdate: 2008-04-28T10:19:14+09:00
description: JDialogやJFrameなどを、フルスクリーン表示に切り替えます。
image: https://lh5.googleusercontent.com/_9Z4BYR88imo/TQTNRUUD2xI/AAAAAAAAAag/G7fNPgecnss/s800/FullScreen.png
---
* Summary [#summary]
`JDialog`や`JFrame`などを、フルスクリーン表示に切り替えます。
#download(https://lh5.googleusercontent.com/_9Z4BYR88imo/TQTNRUUD2xI/AAAAAAAAAag/G7fNPgecnss/s800/FullScreen.png)
* Source Code Examples [#sourcecode]
#code(link){{
private void toggleFullScreenWindow() {
GraphicsEnvironment graphicsEnvironment =
GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice graphicsDevice =
graphicsEnvironment.getDefaultScreenDevice();
if (Objects.isNull(graphicsDevice.getFullScreenWindow())) {
dialog.dispose(); // destroy the native resources
dialog.setUndecorated(true);
dialog.setVisible(true); // rebuilding the native resources
graphicsDevice.setFullScreenWindow(dialog);
} else {
graphicsDevice.setFullScreenWindow(null);
dialog.dispose();
dialog.setUndecorated(false);
dialog.setVisible(true);
dialog.repaint();
}
requestFocusInWindow();
}
}}
* Description [#explanation]
* Description [#description]
上記のサンプルは、`JDialog`をフルスクリーン表示とウィンドウ表示に切り替えることが出来ます。
- KBD{F11}キー、ダブルクリック
-- フルスクリーン表示、ウィンドウ表示の切り替え
- KBD{Esc}キー
-- アプリケーション終了
----
- フルスクリーン表示とウィンドウ表示を切り替える前にタイトルバーの非表示、表示も`setUndecorated(...)`メソッドで切り替え
-- このメソッドを使用する前に一旦`dispose`してウィンドウのネイティブリソースを開放しておく必要がある
- `setUndecorated(boolean undecorated)`はウィンドウが表示されていない状態の場合のみ呼び出し可能だが、この「表示されていない」は `isVisible()`ではなく`isDisplayable()`が`false`の意味なので、`dialog.setVisible(false);`のみ実行すると`Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The dialog is ''displayable''.`が発生する
-- [https://docs.oracle.com/javase/jp/8/docs/api/java/awt/Window.html#dispose-- Window (Java Platform SE 8)]
-- [https://docs.oracle.com/javase/jp/8/docs/api/java/awt/Dialog.html#setUndecorated-boolean- Dialog#setUndecorated(boolean) (Java Platform SE 8)]
-- [https://docs.oracle.com/javase/jp/8/docs/api/java/awt/Component.html#isDisplayable-- Component#isDisplayable() (Java Platform SE 8)]
* Reference [#reference]
- [https://docs.oracle.com/javase/tutorial/extra/fullscreen/exclusivemode.html Full-Screen Exclusive Mode (The Java™ Tutorials > Bonus > Full-Screen Exclusive Mode API)]
* Comment [#comment]
#comment
#comment