tctawd
tctawd

Reputation: 207

How to use No Layout or Absolute Layout like Eclipse?

Title says all I would like to use no layout or the absolute layout from Eclipse. Is there a way of doing this?

Upvotes: 8

Views: 17292

Answers (1)

durron597
durron597

Reputation: 32343

No.

It's not supported in IntelliJ. Why don't you want to use a LayoutManager?

Source: http://devnet.jetbrains.com/message/3537347?tstart=0


If you use absolute layout, you have to do resizing entirely yourself, making sure things are lined up (which could be deep inside nested containers) by yourself, etc.

Check out GroupLayout: http://docs.oracle.com/javase/tutorial/uiswing/layout/group.html

Upvotes: 5

Related Questions