SDL: new API to show built-in SDL keyboard, fixed built-in QWERTY keyboard

This commit is contained in:
Sergii Pylypenko
2015-11-02 21:57:22 +02:00
parent bdab723f36
commit 84765b2f5c
11 changed files with 309 additions and 81 deletions

View File

@@ -763,7 +763,12 @@ class DemoRenderer extends GLSurfaceView_SDL.Renderer
public void showScreenKeyboardWithoutTextInputField() // Called from native code
{
context.showScreenKeyboardWithoutTextInputField();
context.showScreenKeyboardWithoutTextInputField(Globals.TextInputKeyboard);
}
public void showInternalScreenKeyboard(int keyboard) // Called from native code
{
context.showScreenKeyboardWithoutTextInputField(keyboard);
}
public void showScreenKeyboard(final String oldText, int unused) // Called from native code