I am very new in Java. I want to use a code for full screen form. I want that is working in all OS. I found a code that used AWT, but AWT does not work in Linux.
I need a code that doesn't use AWT.
I am very new in Java. I want to use a code for full screen form. I want that is working in all OS. I found a code that used AWT, but AWT does not work in Linux.
I need a code that doesn't use AWT.
Although statement "AWT does not work in Linux" sounds very strange I have to mention that you indeed need more than AWT to create full screen application in java. Take a look on the tutorial http://docs.oracle.com/javase/tutorial/uiswing/misc/trans_shaped_windows.html
that explains a lot of nice techniques including full screen windows. Search for full-screen
(with dash) in this article.