- 
    
Bug
 - 
    Resolution: Duplicate
 - 
    
  Not Evaluated                     
     - 
    None
 - 
    5.2.0 Beta1
 - 
    None
 - 
    Android 4.1.2, Samsung Galaxy S3 GT-I9305
 
Application doesn't receive menu key event. Other key events can be received and handled. Even though android doesn't require devices to have menu key but for those that actually have it would be nice to get the key press / release event.
Test application:
import QtQuick 2.2
Rectangle {
    id: first
    width: 360
    height: 360
    Rectangle {
        id: second
        anchors.fill: parent
        focus: true
        Keys.onReleased: {
            event.accepted = true;
            display.text = event.key
            console.log("Key.onReleased:" + event.key)
            switch(event.key) 
        }
        Text 
        MouseArea {
            anchors.fill: parent
            onClicked: 
        }
    }
}
- is replaced by
 - 
                    
QTBUG-32334 Menu button events are not propagated to QML
-         
 - Closed
 
 -