views:

22

answers:

2

How can I hide the title bar (and also the midlet icon) and not the softkeys in j2me midlets? I am creating a midlet which make use of a canvas.the full screen mode hides both titles and soft keys. any ideas?

A: 

Try this link. Note that this doesnt work on ALL J2ME handsets, Some Nokia ones have their own APIs for this.

omermuhammed
setFullScreenMode(true) hides both the title bar and the soft key command actions.this is not what i need. I need to hide only the title bar and not the soft keys (commands). thanks
Elias Haileselassie
In this case you can use setFullScreenMode(true) and draw your own custom softkeys as BlaXpirit below says? That is not too hard to do.
omermuhammed
A: 

This is impossible.

But you may draw your own softkeys: just leave some place at the bottom of the screen and draw, for example, two rectangles and two lines of text

BlaXpirit
Just edited the answer.
BlaXpirit