I've upgraded code to:
Qt Code:
  1. TextField
  2. {
  3. width: 384
  4. height: 128
  5.  
  6. placeholderText: qsTr("Android keyboard test")
  7.  
  8. focus: true
  9.  
  10. onTextChanged:
  11. {
  12. print("Text changed");
  13. } // onTextChanged
  14.  
  15. MouseArea
  16. {
  17. anchors.fill: parent
  18.  
  19. onClicked:
  20. {
  21. print("clicked");
  22. forceActiveFocus(Qt.MouseFocusReason);
  23. Qt.inputMethod.show();
  24. } // onClicked
  25. } // MouseArea
  26. } // TextField
To copy to clipboard, switch view to plain text mode 
Debug message "clicked" gets printed out once I touch onto TextField's area, but keyboard is not visible!

Sincerely,
Marko