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

Android Window.fullscreen is not full screen

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: P1: Critical P1: Critical
    • 5.5.0 RC
    • 5.5.0 Beta
    • QPA
    • None
    • MacOS 10.10.3, Google Nexus 5 + Emulator
    • Android
    • 5b739a5b8cfbbedd9265b192d08b346d9b265590

      Windows that are set to visibility = Window.Fullscreen still have top and bottom bars. Actually, in full screen mode the used screen is smaller than in Automatic mode.

      EXAMPLE CODE:

      import QtQuick 2.4
      import QtQuick.Window 2.2
      import QtQuick.Controls 1.3
      
      Window {
          visible: true
          id: mainWindow
          Rectangle {
              height: parent.height
              width: parent.width/2
              color: "#f0f"
              MouseArea {
                  anchors.fill: parent
                  onClicked: mainWindow.visibility = Window.AutomaticVisibility
              }
          }
          Rectangle {
              height: parent.height
              width: parent.width/2
              x : width
              color: "#ff0"
              MouseArea {
                  anchors.fill: parent
                  onClicked: mainWindow.visibility = Window.FullScreen
              }
          }
      
          visibility: Window.FullScreen
      }
      

        For Gerrit Dashboard: QTBUG-46234
        # Subject Branch Project Status CR V

            esabraha Eskil Abrahamsen Blomfeldt
            sede sede
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes