I tried set fullScreenMode(false) for my app (LWUIT). But can not get Canvas.

1 way: com.nokia.mid.ui.LCDUIUtil.setObjectTrait(javax.microedition.lcdui.Display.getDisplay(this).getCurrent(), "nokia.ui.canvas.status_zone", Boolean.FALSE);

2 way: javax.microedition.lcdui.Display.getDisplay(this).getCurrent().setFullScreenMode(false);

But I have error. Method getCurrent() return class Displayable which don't have method setFullScreenMode().

Also I tried javax.microedition.lcdui.Canvas)javax.microedition.lcdui.Display.getDisplay(this).getCurrent() but it return null.

What is way for resolved this problem?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The last way is correct, you need to use it AFTER invoking form.show() for it to actually work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.