Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Qt6: FullScreen on Android

Qt6: FullScreen on Android

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
1 Posts 1 Posters 453 Views
  • 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.
  • bunjee207B Offline
    bunjee207B Offline
    bunjee207
    wrote on last edited by bunjee207
    #1

    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
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved