I am developing a device using VAR-SOM-MX7 developing in Yocto Sumo. I managed to add virtual keyboard into my QApplication but when the keyboard appeared, it overlaps the application. The textEdit field still getting the input from the virtual keyboard but just cannot show the textEdit field while typing.
I have tried to:
qputenv("QMLSCENE_DEVICE", QByteArray("softwarecontext"))
CONFIG += disable-desktop
In qml I changed the keyboard layout:
keyboardBackground: Rectangle {
color: "transparent"
}
But still I am getting black screen on top overlapping my application.