开发者

how to add our menu item in messenger of blackberry

开发者 https://www.devze.com 2023-01-10 16:52 出处:网络
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.

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);
        }
    };
}
0

精彩评论

暂无评论...
验证码 换一张
取 消