up vote 2 down vote favorite
share [g+] share [fb]

In my application, I have a layout similar to what is shown below:

@@@@@@@
XXXXXXX***
XXXXXXX***
XXXXXXX***
%%%%%%%

In this layout, X is a JTable. The other components can remain the same size. Is there a layout or strategy that will have the JTable (X) resize based on available screen size and have everything else stay on the sides properly?

Thanks.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

That looks very much like a BorderLayout to me. Have you tried that?

link|improve this answer
How can you keep the top and bottom components from taking up the entire width of the BorderLayout? When I try it, it will fill all three components horizontally. – Tony Eichelberger Dec 22 '09 at 22:11
You can use three BorderLayout panels p1, p2, p3 with '@' set to the NORTH of p1, 'X' the CENTER of p1, '%' the SOUTH of p1. '*' the CENTER of p2 with Box.createRigidArea(size) add to north and sourth. and p3 will contain both p1 and p2 with p1 as the CENTER and p2 as the EAST. – dennisjtaylor Dec 22 '09 at 22:39
Yes, I knew you could do it with multiple layouts. I was just curious if the initial answer was indicating it could be done with just one layout. – Tony Eichelberger Dec 24 '09 at 16:40
feedback

It can also be done with GroupLayout, but it is designed for GUI builders, as it's very verbose. So if you already have existing code, you might not want to try it first.

link|improve this answer
feedback

I am a big fan of JGoodies FormLayout. Here is some sample code of one way to do this with FormLayout.

    JPanel panel = new JPanel();        
    FormLayout layout = new FormLayout("100dlu, 20dlu:grow", "pref, pref, pref");
    panel.setLayout(layout);

    JTextField t1 = new JTextField();
    JTextField t2 = new JTextField();
    JTable tb = new JTable();
    JScrollPane sp = new JScrollPane();
    sp.setViewportView(tb);

    CellConstraints cc = new CellConstraints();
    panel.add(t1, cc.xy(1, 1));
    panel.add(t2, cc.xy(1, 3));
    panel.add(sp, cc.xyw(1, 2, 2));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.