Event for QWidget after "back" pressed in Android
Unsolved
Mobile and Embedded
-
Hi @Gourmet
I think that is the default behavior for everything. Exception may be stuff like QLineEdit that has an active focus and accepts keyPressEvents.You can either override the
keyPressEvent
of your top most widget/ or install an event filter on that.The key you'll have to listen to is the
Qt::Key_Back
key.