PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV Mobile 2024 → Hide OnScreenKeyboard android
Hide OnScreenKeyboard android
Started by Robin, Aug., 29 2012 12:11 PM - 1 reply
Registered member
2 messages
Posted on August, 29 2012 - 12:11 PM
Hello Windev Mobile developers,

Is there any way to hide the OSK (onscreenkeyboard) by progamming? It should come back when an input field is selected.

The keyboard currently does not hide automaticly when pressing a button (an thus deactivating the input control?

Any (Windev) solution is welcome,

Thanks in advance,
Robin
Registered member
3,659 messages
Popularité : +175 (223 votes)
Posted on May, 15 2014 - 2:18 PM
PROCEDURE Teclado(LOCAL HideUnhide)

IF HideUnhide = "Hide"
SIPVisible(False)
ELSE IF HideUnhide = "Unhide"
SIPVisible(True)
END



in code in control

Teclado("Hide")