placing Popup over/above virtual keyboard
-
In my root QML
ApplicationWindow
, I have aPopup
that covers the full screen when visible (this is my implementation of a “Dream” mode i.e. I make this Popup visible when I want to enter dream mode). This all works exactly as I’d like it to … with one exception: it does not cover thevirtual keyboard
if it’s presented when I want to start dreaming.Is there a way I can change the
z-level
of myPopup
(which I believe is in theOverlay
layer) such that it will obscure the keyboard? If not, is there a better way to achieve this?My current attempt to solve this has been to simply set
z: 10000
for my Popup. This gets it over any other modalDialog
that I use, but is failing to cover the keyboard which is sometimes present.I should add, this is an embedded Linux device/platform (not Android, etc.) and I'm using Qt's VirtualKeyboard
InputPanel
.