I want to show the status of some files in a Java GUI. Each file has a label and a button, the colour of the button represents the status of the file and clicking performs various operations. All this is working, the problem is that they are not showing correctly. I want it to appear as
[Label 1] [File 1] [File 2] [Label 2] [Label 3] [File 3] [File 4] [Label 4] etc.
To do this I have made a panel with a GridLayout
new JPanel(new GridLayout((list.size() + 1) /2,4,3,3));
This works unless there is an odd number of files. Then the grid resizes itself, for example with 3 files I will get a 2x3 grid so label 2 shows on the next line. If I check for an odd number and then add 2 new JPanels after all the other controls it shows correctly but I was wondering if there is a better way of doing this.
Thanks