Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.2.0 RC1
-
None
-
-
f1f07eae2d40f202a709af33ca1e8d86551c9ace
Description
Run the following application:
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 } } }
When you click on the text input the keyboard is shwon and the text changes to "keyboard visible", but when you close the keyboard with the back button, the text does not change back.
It changes back when you hit the back button again. Sometimes it works (every second time?)
Attachments
Issue Links
- is duplicated by
-
QTBUG-129224 Back-key on Android does not work on first time
-
- Open
-
- resulted from
-
QTBUG-34347 Android: the visible property of input method is always false
-
- Closed
-