Reputation: 85
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?
Upvotes: 2
Views: 363
Reputation: 172
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.
Upvotes: 0
Reputation: 4437
Use this Display.getInstance().setThirdSoftButton(true);
See this Command in LWUIT
Upvotes: 3