PDA

View Full Version : Android screen-on keyboard key event?



LepaBrena
15th August 2017, 14:57
Is there any way to handle Android screen-on keyboard key event?
More precisely, I need "Tab" key event.

12549

Example code:


TextField {

Keys.onPressed: {
console.log("key: " + event.key);
}
}


On console, there's nothing.

LepaBrena
16th August 2017, 07:44
As I can see, virtual keyboards & predictive input do not have key events as physical keyboards.
Is there any way how to get event when Tab on virtual keyboard is pressed?