I have added a custom Keyboard to my application. It works correctly when using another application that has text inputs. I have changed the settings / language and input
so that it is enabled and also used as default.
My problem is that I don't know how to show it in my application. I have a view where I draw a terminal screen using a canvas. There is no text input, but yet I do need the keyboard to show up.
How can I force the keyboard to show up ? I saw several ways to do it, using the manifest, using the input method manager, etc... but none worked in my case. Must I focus an input for the keyboard to show up ? Can't I just show it and hide it whenever I want ?
Thank you.
EDIT : Imanaged to show the keyboard by adding a text input and clicking on it. But I still have no idea how to show it without a text input.