Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.2.1
-
Android
-
-
0f4266fbbc45fc311051d9bfb014fb162c383c3e
Description
For example if FileDialog is created dynamic way using Qt.createQmlObject() it doesn't show up in Android device. Tested on 4.1.2 and 4.4.2 Android versions. Same code works in desktop.
Same thing happens with all QtQuick Dialog components.
// Works on android FileDialog { id: fileOpenDialog; visible: false; } // Doesn't work on android var fileDialog = Qt.createQmlObject('\ import QtQuick 2.2 import QtQuick.Controls 1.1 import QtQuick.Dialogs 1.1; FileDialog { id: fileOpenDialogAlt; visible: true; }', mainWindow, "fileDialogDynamic");
Please, check the attached application.
Attachments
Issue Links
- relates to
-
QTBUG-33644 QtQuick Window Dialog created dynamically can't be set with modality
- Closed