Methods Summary |
---|
public static void | clearState()Clear state of system menu without physical dismiss.
Intended to be used by displayEventConsumer.handlecommandEvent()
(implemented by Display.DisplayAccessor).
inMenu = false;
|
public static void | dismiss()Called to force the display manager to clear whatever system screen
has interrupted the current Displayable and allow the foreground
Display to resume painting.
inMenu = false;
dismissMenuAndPopup();
|
private static native void | dismissMenuAndPopup()Native method to dismiss the current menu or popup
in the case of setCurrent()
being called while the Display is suspended by a system screen.
|
public static boolean | getState()Returns current status of the system menu.
Intended to be used by displayEventConsumer.handlecommandEvent()
(implemented by Display.DisplayAccessor).
return inMenu;
|
public static void | show()Called to show system menu on the screen
showMenu();
inMenu = true;
|
private static native void | showMenu()Native method to show the command menu on the screen
|
public static native void | updateCommands(Command[] itemCommands, int numItemCommands, Command[] commands, int numCommands)Set the current set of active Abstract Commands.
|