TextEdit in Qt and virtual keyboard
-
I’m implementing TextEdit. And I want the virtual keyboard to be shown on tap on the widget (on mobile platforms).
What should I do for it?
Thanks.
-
nothing really, it should pop up by itself if you "click" on an TextEdit!?
in case you want to manually open the keyboard, try:
@
Qt.inputMethod.show()
@
-
Great thanks. It's really helped me.
qApp->inputMethod()->show();