有没有办法可以在不使用文本字段的情况下在Qml(qt)中启用Android键盘。
答案 0 :(得分:0)
您可以通过QInputMethod
和show
功能触发键盘,这些功能可通过Qt global object从QML访问。最小的例子:
import QtQuick 2.4
import QtQuick.Window 2.0
ApplicationWindow {
id: window
visible: true
// your stuff
Component.onCompleted: Qt.inputMethod.show()
}
镜面反射功能hide
可用于关闭虚拟键盘。