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.
我想在我的 android 应用程序中使用菜单按钮(4.x 所以通常是软件,而不是硬件按钮),但我找不到合适的 QEvent 这样做。我试着做
bool GLViewer::event(QEvent * e){ qDebug()<<e->type(); }
但是按下菜单按钮没有输出,我假设是因为菜单按钮在小部件之外。如何收听此类事件?
如本文所述,您可以在主窗口中使用 keyReleaseEvent() 。