Back

IsKeyboardShown

JS Py
Hello World

Checks if the device keyboard is currently visible or not.

app.IsKeyboardShown() → Boolean

See Also: ShowKeyboard, HideKeyboard

Example - Is Keyboard Shown

function OnStart()
{
    var kbShown = app.IsKeyboardShown();
    app.Alert( kbShown, "Is Keyboard Shown:" );
}
from native import app

def OnStart():
    kbShown = app.IsKeyboardShown()
    app.Alert(kbShown, "Is Keyboard Shown:")
    Copy     Copy All       Run