I have app (LWUIT, Java Me). When I run the app on device, it occupies the all screen. But I want top panel (notification bar of device) is visible.
What are the solutions? Maybe any settings for form of lwuit?

link|improve this question

This is possible with Canvas. – pheromix Feb 8 at 11:09
feedback

1 Answer

up vote 2 down vote accepted

In J2ME/LWUIT you need to find the current canvas and just call setFullScreenMode(false) or alternatively enable the native commands (via Display.setCommandBehavior).

I would recommend against this since the result would look/behave radically differently between devices.

link|improve this answer
but how do I get the canvas? – Tim Feb 15 at 8:37
Same as you always do in MIDP. Within the MIDlet get the MIDP Display and get the current canvas. Make sure to do it AFTER invoking show(). – Shai Almog Feb 16 at 6:13
I tried: javax.microedition.lcdui.Display.getDisplay(this).getCurrent().setFullScreenMode‌​(false); But class Displayable hasen't got method setFullScreenMode. – Tim Feb 21 at 14:04
You need to downcast the Displayable to Canvas – Shai Almog Feb 23 at 5:07
feedback

Your Answer

 
or
required, but never shown

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