Question

I've developed an app in Java Swing which is running absolutely fine in windows but the same when ran in linux (RedHat 64 bit) doesn't open in full screen mode because of which some of the components aren't visible at all and hence inaccessible. I'd appreciate your suggestion.!

Was it helpful?

Solution

..some of the components aren't visible at all and hence inaccessible. I'd appreciate your suggestion!

Java GUIs might have to work on a number of platforms, on different screen resolutions & using different PLAFs. As such they are not conducive to exact placement of components. To organize the components for a robust GUI, instead use layout managers, or combinations of them1, along with layout padding & borders for white space2.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top