0

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?

Elias Haileselassie
  • 1,385
  • 1
  • 18
  • 26

2 Answers2

0

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

omermuhammed
  • 7,365
  • 4
  • 27
  • 40
  • 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 Sep 14 '10 at 07:52
  • 1
    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 Sep 14 '10 at 15:07
0

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

Oleh Prypin
  • 33,184
  • 10
  • 89
  • 99