Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-45861

QML FullScreen with Flickable if active the app, the window will flick

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P3: Somewhat important
    • None
    • 5.4.0
    • None
    • Qt5.4.0 (vs2013 android) win7 android
    • Android

    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

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              aalpert Alan Alpert
              cbdg cbdg0222
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:

                Gerrit Reviews

                  There are no open Gerrit changes