I want to fill the JLayeredPane in a order so that when it reaches the right margin it should then start from the next line ans fill the entire box with buttons. I want to design a Point Of Sale screen and its hard for me to arrange the buttons manually.

link|improve this question

Sorry for my ignorance, but what is a "POS" screen? And why a JLayeredPane? Why not a simple JPanel that uses a Layout manager such as GridLayout? – Hovercraft Full Of Eels Feb 22 '11 at 5:14
Oops!! its Point Of Sale software.. – Deepak Feb 22 '11 at 5:15
ok JPanel is fine.. actually i user springlayout but i have problem with button sizes. they are not fixed, the size varies as the text varies.. i want fixed size.. – Deepak Feb 22 '11 at 5:16
and gridlayout puts the button just in one row. its not putting in new line as the right border is reached.. – Deepak Feb 22 '11 at 5:17
2  
No, a GridLayout should be able to use as many rows as you desire. For instance, if you know you'll use 9 columns, then you could use a GridLayout(0, 9, 5, 5) for a grid layout that has 9 columns, variable number of rows and 5 pts of vertical and horizontal space between items – Hovercraft Full Of Eels Feb 22 '11 at 5:19
show 7 more comments
feedback

1 Answer

up vote 1 down vote accepted

If I understand correctly, you want the layout manager to auto wrap the components. Maybe the default behavior of the FlowLayout is enough for you.

Otherwise, it is actually fairly easy to develop your own layout manager by subclassing LayoutManager or LayoutManager2. Tip: see how other simple layout managers are implemented to judge the complexity of the task.

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.