I am trying to add a seperator to the menu of my screen class. The menu Items I have created work fine but when I try to add a separator to organize the options, it doesn't work at all and no errors ???? Anyone know why ?
I created my own class that subclasses net.rim.device.api.ui.container.FullScreen as follows
Code:
public class myScreen extends FullScreen
{
protected void makeMenu(Menu menu, int instance)
{
//add some MenuItems
menu.addSeparator(); //doesn't work
menu.getDefault().separator(100); //doesnt work
super(menu, instance);
}
}