如何更改切换应用程序的MenuItem文本?
我需要将开关应用程序菜单项的文本更改为法语的“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以向 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