how to remove left soft key from right soft key menu option
i have 5 commands. such as back , select , name1, name2, name3.
here back command occupied as left soft key. remaining commands including back command occupied as right soft key in the name of menu. now i want to remove that back command from menu list.
please give me code. its very urgent.
Re: how to remove left soft key from right soft key menu option
It would help if you showed us how you initialized the commands. The problem most likely has something to do with the types you specified for the commands.
Also, please read this page carefully, it might help: [url]http://library.forum.nokia.com/topic/Java_Developers_Library/GUID-B2DA3F31-AD4D-4E34-996F-AB7EE2B1CAC8.html[/url]
Re: how to remove left soft key from right soft key menu option
i am working in lwuit 1.4. thats y i face this problem. this problem couldnt occur in j2me midlet.
plz give solution. also i give my code for ur reference.
songsCommand = new Command("Songs",4);
moreCommand = new Command("More",3);
downloadsCommand = new Command("Downloads",2);
mainCommand = new Command("Back",1);
formHome.addCommand(mainCommand);
formHome.addCommand(downloadsCommand);
formHome.addCommand(moreCommand);
formHome.addCommand(songsCommand);