1

I have a Form that take a BoxLayout, to be able to add different custom controls one after the other in the Y-AXIS

but there is a Component that I need to add in the bottom of the screen, but as I'm using the BoxLayout so I can't fix it size to bottom of the screen

So I think that I can set that Container of the control to fill the parent Form

So the question is how to make Container fill the parent Form in LWUIT

Thanks in Advance

Mun0n
  • 4,438
  • 4
  • 28
  • 46
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175

1 Answers1

2

Why don't you try to put a BorderLayout in the Form?

You can put Containers in CENTER and SOUTH positions, and they let you place your controls as you want (BoxLayout Axis Y in the center).

Is that what you want?

Mun0n
  • 4,438
  • 4
  • 28
  • 46