HI! I am currently extending an Android Game Framework,which I found in a Book written by Mario Zechner (who also develops Libgdx).
It is working gr
I found a solve :D https://stackoverflow.com/questions/33561137/soft-keyboard-not-receiving-touches-over-surfaceview
I did override onCreateInputConnection method on the CustomSurfaceView class, like in the posted link.
@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
InputConnection conn = super.onCreateInputConnection(outAttrs);
outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_FULLSCREEN;
return conn;
}
it works now, pls try it out, I will upload right away to see if it works on your device too.