如何在Qt上显示键盘?
关于当焦点位于文本框时如何显示键盘的想法吗?就像 Android 键盘一样,需要时会自动出现。我怎样才能在qt上做到这一点?
谢谢!
Any idea on how to show the keyboard when the focus is on a textbox? Just like android keyboard that is automatically appears when it is necessary. How can I do it on qt?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 QML,则需要调用
如果您使用纯 C++ 编程,则需要在同一类 QInputMethod 中使用方法 show()。
If you use QML you need invoke
If you programming in pure C++ you need use method show() in same class QInputMethod.