Details
Description
Qt.inputMethod.visible is always false on Android (4.3, nexus 7)
When the keyboard is shown, Qt.inputMethod.visible is not set to true
import QtQuick 2.2 import QtQuick.Layouts 1.1 Rectangle { width: 360 height: 360 ColumnLayout { TextInput { text: qsTr("Hello World") Layout.preferredHeight: 200 Layout.fillWidth: true } Text { text: Qt.inputMethod.visible ? "keyboard visible" : "keyboard not visible" Layout.fillHeight: true Layout.fillWidth: true } } }
Attachments
Issue Links
- resulted in
-
QTBUG-34831 Android: the visible property is not set to false when keyboard is hidden
-
- Closed
-