0

I have seen this in a slide but I couldn't get that when and why we use this?

Johanna
  • 27,036
  • 42
  • 89
  • 117

2 Answers2

3

null layout means absolute positioning - you have to do all the work in your code. No layout manager to help you out.

duffymo
  • 305,152
  • 44
  • 369
  • 561
3

Why don't you start by reading the Swing tutorial? There is a section that explains all about Layout Management as well as well what "absolute positioning" is. It also explains when you would use abolute positioning versus using a layout manager.

Generally the only time you would use it is when you need to support drag components to a random position.

The tutorial also has lots of other basic examples of using Swing components.

camickr
  • 321,443
  • 19
  • 166
  • 288