Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    Unsolved Qt6: FullScreen on Android

    Mobile and Embedded
    1
    1
    151
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • bunjee207
      bunjee207 last edited by bunjee207

      Greetings Qt coders,

      Starting with Qt6, there seems to be an issue with fullscreen on the Android platform.

      With 6.2.1. The navigation bar area at the bottom stays white. This was not the case using Qt 5.15.2. It seems it could be arranged with native wizardry but I'd much rather have the appropriate behavior by default.

      Anyone had that issue before ?

      VCTsdvW9Z7.gif

      To reproduce I've added the following to the Qt gallery sample:

      MouseArea
          {
              property bool fullScreen: false
      
              anchors.fill: parent
      
              z: 1000
      
              onClicked:
              {
                  fullScreen = !(fullScreen);
      
                  if (fullScreen)
                      window.showFullScreen();
                  else
                      window.showNormal();
              }
      
              Rectangle
              {
                  anchors.fill: parent
      
                  opacity: 0.5
      
                  color: "blue"
              }
          }
      

      Could be a regression from this: https://forum.qt.io/topic/44970/problem-with-fullscreen-mode-in-android-with-qt-5-3-1

      1 Reply Last reply Reply Quote 0
      • First post
        Last post