Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题 1:我使用以下代码创建菜单栏
Qt::WindowFlags flags = windowFlags(); flags |= Qt::WindowSoftkeysVisibleHint; setWindowFlags(flags); showFullScreen();
我想隐藏菜单栏,现在该怎么办?
问题2:当我将我的应用切换到后台(长按home)时,它会进入正在运行的应用列表,可以,但是底部有一个带有退出按钮的菜单栏,我该如何删除它?
通常,当您在 Symbian 上进入全屏时,软键被禁用(屏幕上未显示)。使用您的代码,软键也可以全屏启用。
如果您不想在全屏模式下使用软键,则不要触摸窗口标志。
你如何将你的应用程序切换到后台?