This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I want to develop a desktop application to fit on each screen. What is the best method to do that? One solution can be to write an interface for each screen resolution, but this need more time. If you know other solution please tell me. Thank you.
In the end, you will need to use a combination of layout managers, such that a part of your application will scale (stretch) when the application is resized,while others remain fixed. Usual "victims" of stretching are text components (JTextField only horizontally, JTextArea both horizontally and vertically), tables and trees. Labels and buttons usually have a fixed size that never changes.