This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsKeyboardShown
Hello World
Checks if the device keyboard is currently visible or not.
app.IsKeyboardShown() →
Boolean
See Also:
ShowKeyboard
,
HideKeyboard
Example - Is Keyboard Shown
click to expand contents
function
OnStart
(
)
{
var
kbShown
=
app
.
IsKeyboardShown
(
)
;
app
.
Alert
(
kbShown
,
"Is Keyboard Shown:"
)
;
}
Copy
Copy All
Run
loading