我正在使用FramedForm开发一个使用J2ME Polish的应用程序。
我正在尝试将与Command1相关联的项目附加到FramedForm,将另一个与Command2相关联的项目附加到FramedForm的底部。
FramedForm menuForm = new FramedForm("Menu");
Command command1 = new Command("command1", Command.ITEM, 1);
Command command2 = new Command("command2", Command.ITEM, 2);
IconCustomItem item1 = new IconCustomItem("test1", null);
item1.addCommand(Command1);
menuForm.append(item1);
IconCustomItem item2 = new IconCustomItem("test2", null);
item2.addCommand(Command2);
menuForm.append(Graphics.BOTTOM, item2);
问题是页脚项与两个命令相关联。我尝试使用removeCommands()但没有成功。如何仅将页脚项目与Command2相关联?
感谢。