Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个基于 QML 的应用程序,部署在我的诺基亚 5230 手机上,有几个 TextInput 组件,当组件获得输入焦点时,输入法状态指示器发生了变化,但没有出现虚拟键盘。
我的应用程序是通过调用QDeclarativeView::showFullScreen()来全屏显示的,我试过4种不同的输入法,包括官方的AknFEP,都有同样的问题。
我错过了什么?
顺便说一句,它在桌面或 Qt 模拟器上运行良好。
您使用的是哪个版本的 Qt?
您是否尝试过手动打开 VKB?
TextInput { id: textInput activeFocusOnPress: false MouseArea { anchors.fill: parent onClicked: { textInput.forceActiveFocus(); textInput.openSoftwareInputPanel(); } } }