How to change the switch application MenuItem text?
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 ret开发者_运维技巧urning 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
It is possible to add additional languages to the BlackBerry simulator.
See this BlackBerry support forum article: Add language support to the BlackBerry Simulator
精彩评论