如何更改切换应用程序的MenuItem文本?

发布于 2024-11-30 00:09:26 字数 432 浏览 1 评论 0原文

我需要将开关应用程序菜单项的文本更改为法语的“changer d'application”。 我认为这不是默认菜单项。我进行搜索,发现一个代码返回所有菜单项的 id 和序号:

for (int i = 0; i < 100; i++) {
 try {
 MenuItem item = MenuItem.getPrefab(i);
 System.out.println("Item found: "+item.toString());
 System.out.println("id: "+item.getId()+" index: "+i);
 } catch (Exception e) {
 System.out.println("No item for "+i);
 }
 }

它不适用于 switch 应用程序! 有人知道如何更改开关应用程序的文本吗? 谢谢

i need to change the text of the switch application MenuItem to "changer d'application" in French.
I think it's not a deafult menu Item. I do searchs and I found a code returning the id and the ordinal of all the menuItems:

for (int i = 0; i < 100; i++) {
 try {
 MenuItem item = MenuItem.getPrefab(i);
 System.out.println("Item found: "+item.toString());
 System.out.println("id: "+item.getId()+" index: "+i);
 } catch (Exception e) {
 System.out.println("No item for "+i);
 }
 }

It didn't work for switch application!
Have someone please any idea about how to change the text of switch application?
thanks

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

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

发布评论

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

评论(1

夜空下最亮的亮点 2024-12-07 00:09:26

可以向 BlackBerry 模拟器添加其他语言。

请参阅此 BlackBerry 支持论坛文章:
添加BlackBerry Simulator 的语言支持

It is possible to add additional languages to the BlackBerry simulator.

See this BlackBerry support forum article:
Add language support to the BlackBerry Simulator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文