I have three JLabels and three JTextAreas. I have them in borderlayout, center, but I want each of them in a different line, that's not happening and the top ten search results in Google for line break java don't solve the problem. How can I do a simple line break?
|
|
|||||||
|
|
|
If this is a Swing application, you should use a layout manager to position your fields in the container. |
||
|
|
|
|
Line break won't help with placing Swing objects; you need to place a layout on a center JPanel. That is, the center of your border layout should be a single Swing object, a JPanel, and you should set that to a style which allows you to stack each widget. GridLayout(6,1) may do it. |
||
|
|
|
|
You can use layout managers like GridLayout or GridBagLayout. Even though the latter one is only recommended for code generated by GUI generators I prefer it because it gives me the most flexibility.
Of course this looks butt-ugly but should get you started. You can also abuse a BorderLayout:
|
||||||
|
|
|
Try using a GridLayout for starters:
Doesn't look too pretty but it gets you started. If you don't set a LayoutManager to a new panel, it will use a FlowLayout which behaves somewhat like HTML layout. But there is no such thing as an intended line break in a FlowLayout. It will just put component after component until it reaches the end of the available space and then start a new row. Layout managers you might want to get to know are:
There are more, but these three should allow you to layout 95% of your panels. |
|||
|
|
