是否可以为 j2me 元素动态设置命令?

发布于 2024-12-11 10:03:50 字数 224 浏览 0 评论 0原文

我有一个像按钮一样工作的 StringItem。标准菜单项(左侧的“后退”和右侧的“下一步”始终存在)。我想做的是将“后退”菜单项保留在左侧,并更改“下一个”菜单项的标签。是否可以?

我尝试创建一个带有必要标签的新命令并添加到 stringiteim,但它不会替换 Next 命令,它只是创建一个名为 Menu 的菜单项,其中包含子项 - Next 和我的命令标签。

如何删除 Next 或更改其标签?

I have a StringItem which works like a button. The standard menu items(Back on the left side and Next on the right side are always present). The thing I want to do is to leave Back menu item on the left and change Next menu item's label. Is it possible?

I tried to create a new Command with the necessary label and add to the stringiteim but it doesn't replace Next command, it just creates a menu item called Menu with subitems- Next and My command label.

How can I remove Next or change its label?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁杀 2024-12-18 10:03:50

命令 API< /a> 不允许设置新标签,因此您正确猜测的唯一选择是添加新命令。你只是忘了一件事...

...我尝试创建一个带有必要标签的新命令并添加到字符串项,但它不会替换“下一个”命令,它只是创建一个名为“菜单”的菜单项,其中包含子项 -“下一个”和“我的命令标签”...

...在执行上述操作时,您忘记删除“下一步”命令。替换命令的代码应如下所示:

    myForm.removeCommand(nextCommand); // removes "Next" cmd
    myForm.addCommand(myCommand); // adds "My" cmd

或者,如果您使用与 Item 关联的命令 (ItemCommandListener API) 而不是 Form,

    // myStringItem below is your StringItem above
    myStringItem.removeCommand(nextCommand); // removes "Next" cmd
    myStringItem.addCommand(myCommand); // adds "My" cmd

Command API does not allow to set new label, so your only option as you correctly guessed was to add the new command. You just forgot one thing...

...I tried to create a new Command with the necessary label and add to the stringitem but it doesn't replace Next command, it just creates a menu item called Menu with subitems- Next and My command label...

...when doing above, you forgot to remove "Next" command. Code to replace command should be about as follows:

    myForm.removeCommand(nextCommand); // removes "Next" cmd
    myForm.addCommand(myCommand); // adds "My" cmd

or, if you use commands associated with Item (ItemCommandListener API) instead of Form,

    // myStringItem below is your StringItem above
    myStringItem.removeCommand(nextCommand); // removes "Next" cmd
    myStringItem.addCommand(myCommand); // adds "My" cmd
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文