tags:

views:

78

answers:

2

i have created n JPanels and in each JPanel i have added 3 components.i add these JPanels to a new JPanel as rows. layout for n JPanels is FlowLayout and for the main panel is BorderLayout. The setPrefferedSize() method is working fine for the components which i have added in n JPanels but it is not working for n JPanels. i am trying npanels[i].setPrefferedSize(new Dimension(300,25)) I want the height of JPanel to be equal to height the components added in it(which is 25). is there any constraint that height of a JPanel should be some minimum value? please help i tried a lot of things but not working.....

+1  A: 

Some layout managers tend to ignore the size setting...

Read somewhere that BorderLayout might tend to ignore the width for NORTH and SOUTH components, height for EAST and WEST, both height and width are ignored for CENTER...

Could this be the case?

Also, can you provide a screenshot or a diagram explaining whats happening?

Nivas
adding screen shot give me 5 minutes
stillStudent
but i cant find here any option to add images...can you help me in this?
stillStudent
The "Image" icon looks like a picture; it's sixth from the left; see also http://stackoverflow.com/editing-help
trashgod
+1  A: 

The setPrefferedSize() method is working fine for the components

There is generally no need to set a preferred size for components. Swing will calculate the preferred size automatically.

layout for n JPanels is FlowLayout... which i have added in n JPanels but it is not working for n JPanels

Again, there is no need to set the preferred size of each panel. The size will be calculated automatically based on the preferred size of all the components.

the main panel is BorderLayout

This does not make sense since you can't add "n" panels to the BorderLayout. You can only add one component to the North,Center and South so you can have a maximum of 3 different vertically display panels. In this case if you use frame.pack() then each panel will be displayed at its preferred size. On the other hand if you use frame.setSize(300, 400) then the hieght of the Center panel will be stretched.

Since it appears you want all panels the same size maybe you should be using a GridLayout, otherwise you can try a BoxLayout. Read the Swing tutorial. It explains all about using the layout managers.

If you need more help post your SSCCE.

camickr