I have added the plug in to the resource file. So I am able to restore and load it manually after application start.
This leads me to a new problem:
The plug in shall replace the system keyboard on android. It consists of 2 classes (myPlatformInputContextPlugin as factory & myInputContext as product).
As QInputMethod uses QPlatformInputContext to show/hide the system keyboard, I though this would be sufficient. Unfortunately, it does not work as expected because the function
QPlatformInputContext * myPlatformInputContextPlugin::create(const QString&, const QStringList&);
QPlatformInputContext * myPlatformInputContextPlugin::create(const QString&, const QStringList&);
To copy to clipboard, switch view to plain text mode
never gets called. What else could I do to replace the keyboard?
Bookmarks