2

T want to add more than 2 Commands in a single row in the Footer in LWUIT Form, suppose I want to add Back, Select and Exit Command in a single row. How can I do that?

gnat
  • 6,213
  • 108
  • 53
  • 73
Juhi
  • 85
  • 7

2 Answers2

3

Use this Display.getInstance().setThirdSoftButton(true);

See this Command in LWUIT

Community
  • 1
  • 1
Mun0n
  • 4,438
  • 4
  • 28
  • 46
  • True. I would also add that you can do whatever you want by overriding the MenuBar class or just placing components in the SOUTH section of a form. – Shai Almog Jan 26 '12 at 12:00
0

You can set Display.getInstance().setThirdSoftButton(true) in your midlet. The default lwuit list adds select by default on your list item so if you are using a lwuit list even adding select command is not required once you have enabled the thirdsoftkey.

Rahul
  • 172
  • 1
  • 4