void closeKeyboard(int delayMs = 0)
Closes the virtual keyboard
Security
Trust Level Required: Medium Trust
Parameters
Name | Description |
delayMs |
(Optional) int Number of milliseconds to delay before closing. |
Return
Nothing returned
Remarks
The delayMs parameter is useful for going from one input box to the next without the keyboard going down and coming right back up. A value of 500 is practical for this test case.
Examples
setInterval(function() {
if(KioApp.isKeyboardShowing())
setTimeout(function() { KioApp.closeKeyboard(); }, 500);
}, 10000);
Requirements
KioWare OS (Linux®) version 1.0 or greater.
Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.