1

Question 1: I create menubar with below code

Qt::WindowFlags flags = windowFlags();
flags |= Qt::WindowSoftkeysVisibleHint;
setWindowFlags(flags);
showFullScreen();

I want hide the menubar, what shall do now?

Question 2: When i switch my app to background(long press home), it will enter the runing app list, it's ok, but there's a menubar with a exit button at the bottom, how can i remove it?

Donotalo
  • 12,748
  • 25
  • 83
  • 121
user199403
  • 483
  • 1
  • 6
  • 11

1 Answers1

1

Normally when you enter full screen on Symbian, soft-keys are disabled (not shown on screen). With your code, soft-keys are enabled in full screen also.

If you wont soft-keys in full screen, then leave window flags untouched.

How do you switch your app into background?

Raj
  • 22,346
  • 14
  • 99
  • 142
Peter
  • 11
  • 1