Blackberry SubMenu Creation and Calling Method
// creating menu and submenus
//menu is main Menu
//u have to call from where ever you want
SubMenu menu = new SubMenu(); SubMenu sMenu = new SubMenu(); menu.add(new SubMenuItem("MenuName", sMenu));
//menu is main Menu
//u have to call from where ever you want
Ui.getUiEngine().pushScreen(menu);
Comments
Post a Comment