how to add our menu item in messenger of blackberry
I want to add mymenuitem on smssending menulist,
How could I do t开发者_开发技巧hat?
You just override the makeMenu method and add whatever you want.
protected void makeMenu(Menu menu, int instance) {
menu.add(getExitItem(0,0));
}
public MenuItem getExitItem(int ordinal, int priority) {
return new MenuItem("Close", ordinal, priority) {
public void run() {
System.exit(0);
}
};
}
精彩评论