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

Android Window.fullscreen is not full screen

    XMLWordPrintable

Details

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

    Description

      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
      }
      

      Attachments

        Issue Links

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

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes