Application can modify text input hint message

This commit is contained in:
pelya
2013-03-08 00:30:59 +02:00
parent f3b1f0d437
commit 05847089d3
8 changed files with 70 additions and 6 deletions

View File

@@ -464,7 +464,7 @@ class DemoRenderer extends GLSurfaceView_SDL.Renderer
{
try {
Thread.sleep(50); // Give some time to the keyboard input thread
catch(Exception e) { };
} catch(Exception e) { };
}
return 1;
}
@@ -523,6 +523,11 @@ class DemoRenderer extends GLSurfaceView_SDL.Renderer
return context.isScreenKeyboardShown() ? 1 : 0;
}
public void setScreenKeyboardHintMessage(String s)
{
context.setScreenKeyboardHintMessage(s);
}
public void startAccelerometerGyroscope(int started)
{
accelerometer.openedBySDL = (started != 0);