Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
5.15.7, 5.15
-
Samsung Galaxy S10E, Android 11
Description
The bottom navigation bar on Android 11 on Samsung phones obstructs the field of view and covers part of an element within an Activity which was supposed to be located just above it. The activities width and height are set to match those of Screen.
Demo to reproduce
import QtQuick 2.15 import QtQuick.Window 2.15 Window { id: rootWindow visible: true color: "orange" Text { anchors.centerIn: parent text: "W" + rootWindow.width + "/H" + rootWindow.height } Rectangle { color: "blue" anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom height: 20 } }
Attachments
Issue Links
- relates to
-
QTBUG-93407 Samsung bottom-most navigation bar obstructs view on Android 10
- Closed