Details
-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
None
-
5.4.0
-
None
-
Qt5.4.0 (vs2013 android) win7 android
-
-
2025wk02s3FOQtforAndroid
Description
// main.cpp
#include <QApplication> #include <QQmlApplicationEngine> int main(int argc, char *argv[]) { QApplication app(argc, argv); QQmlApplicationEngine engine; engine.load(QUrl(QStringLiteral("main.qml"))); return app.exec(); }
// main.qml
import QtQuick 2.4 import QtQuick.Controls 1.3 import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 Window { title: qsTr("Hello World") visible: true flags: Qt.Window | Qt.WindowFullscreen; visibility: Window.FullScreen; Flickable { width: 200; height: 200 contentWidth: image.width; contentHeight: image.height Image { id: image; source: "http://att.x2.hiapk.com/forum/month_1011/101115163272b86420add2dd5d.jpg"; } } }
Attachments
Issue Links
- is replaced by
-
QTBUG-132717 Flickering at startup or resume of Android apps
- Reported
- relates to
-
QTBUG-33302 on windows, resizing a frameless window on left and top sides of window causes jitter
- Open
-
QTBUG-50246 QtQuick flickering on fullscreen when use ComboBox
- Closed
-
QTBUG-56326 Windows: Fullscreen window shows old frame when activating it
- Reported