gpt4 book ai didi

android - Qt/QML : TextInput with Keys. onPressed 只接收DEL键,不接收其他键

转载 作者:行者123 更新时间:2023-12-04 18:06:46 25 4
gpt4 key购买 nike

系统:Qt/QML 5.3.1 Android 和 Windows QtCreator设备:三星 Tab 3 8",Android 4.1.2

编辑:我的主 QML 页面包含一个带有 Keys.onPressed 的 TextInput。此 TextInput 仅接收 DEL 键,不接收来自标准虚拟键盘的其他键。

如何在 TextInput/Keys.onPressed 事件处理程序中接收所有按键?

import QtQuick 2.2
import QtQuick.Window 2.1
import QtQuick.Controls 1.2

ApplicationWindow {
visible: true
width: 640
height: 400

toolBar: ToolBar {
Row {
anchors.fill: parent
ToolButton {
text: "Exit"
onClicked: Qt.quit();
}
}
}

TextInput {
width: 200
height: 40
focus: true

Keys.onPressed: {
console.log("Key="+event.key+" "+event.text);
}
Keys.onReleased: {
console.log("Key="+event.key+" "+event.text);
}
}
}

当我按下虚拟键盘上的键(包括 DEL 键)时,Qt 会引发错误:

W/Qt (26304): kernel\qmetaobject.cpp:1458 (static bool QMetaObject::invokeMethod(QObject*, const char*, Qt::ConnectionType, QGenericReturnArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument , QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument)): QMetaObject::invokeMethod: 没有这样的方法 QQuickTextInput::inputMethodQuery(Qt::InputMethodQuery,QVariant)

编辑(2014 年 10 月 27 日):出现此问题是因为它是 Qt/Qml 中缺少的功能,请参阅以下链接以了解有关它的讨论 http://qt-project.org/forums/viewthread/45072/以及 Qt 报告的以下链接 https://bugreports.qt-project.org/browse/QTBUG-40803

最佳答案

分析

正如问题作者已经发现的那样,这个问题是由于 Qt for Android 中缺少功能造成的(参见 QTBUG-40803 ):

On Samsung devices, like tablets and smartphones, it is impossible to receive keys from the virtual keyboard [from a TextInput component], by using Keys.onPressed or Keys.onRelease, except for DEL and ENTER keys.

问题不仅限于错误报告中所述的三星设备;例如,它也发生在我的 Asus Nexus 7 上。错误报告中提到的DEL键是Android键盘的键(Delete/Backspace),而不是Delete(Android键盘不具有)。此键的按键事件不会每次都发出,而是仅在空 TextField 中按下时发出。

此行为不同于 Qt 桌面应用程序,在 Qt 桌面应用程序中,物理键的每个按键/按键释放事件都由 TextInput 发出信号。

解决方案

你不能听 Keys.onPressed/Keys.onReleased , 但你可以收听 onTextEditedonTextChanged TextInput 的信号.对于像在字段包含文本时启用按钮这样的简单情况,这些信号就足够了。对于其他情况,您可以分析键入的文本并根据用于此的键采取行动。

这个解决方案因另外两个错误而变得更加复杂:

  • 在安卓平台上,textChanged()textEdited() TextInput 不发出信号只要为 Android 键盘启用预测文本输入 ( source )。我想它们最终会被发出,但只有在通过键入空格字符或点击建议来“提交”一个词之后才会发出。当然,如果您想对按键使用react,那也无济于事。因此,您首先必须使用 TextInput { inputMethodHints: Qt.ImhNoPredictiveText } 禁用预测文本输入行为。 .

  • 在某些设备上,TextInput { inputMethodHints: Qt.ImhNoPredictiveText }没有效果 ( QTBUG-37533 )。然后,inputMethodHints: Qt.ImhSensitiveData是另一种选择。适用于 Asus 7。(这不会创建“密码输入字段”——文本仍会显示在该字段中,但预测输入等已关闭。)

总而言之,一个有效的解决方案(对我来说在 Nexus 7 上)看起来像这样:

TextField {
inputMethodHints: Qt.ImhSensitiveData

onTextEdited: {
console.log("textEdited() signal received")
}

关于android - Qt/QML : TextInput with Keys. onPressed 只接收DEL键,不接收其他键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24797632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com