placing Popup over/above virtual keyboard
-
In my root QML
ApplicationWindow, I have aPopupthat 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 keyboardif it’s presented when I want to start dreaming.Is there a way I can change the
z-levelof myPopup(which I believe is in theOverlaylayer) 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: 10000for my Popup. This gets it over any other modalDialogthat 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. -
In my root QML
ApplicationWindow, I have aPopupthat 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 keyboardif it’s presented when I want to start dreaming.Is there a way I can change the
z-levelof myPopup(which I believe is in theOverlaylayer) 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: 10000for my Popup. This gets it over any other modalDialogthat 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.