Is there any way to handle Android screen-on keyboard key event?
More precisely, I need "Tab" key event.

tab.jpg

Example code:
Qt Code:
  1. TextField {
  2.  
  3. Keys.onPressed: {
  4. console.log("key: " + event.key);
  5. }
  6. }
To copy to clipboard, switch view to plain text mode 
On console, there's nothing.