PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → Hide OnScreenKeyboard android
Hide OnScreenKeyboard android
Débuté par Robin, 29 aoû. 2012 12:11 - 1 réponse
Membre enregistré
2 messages
Posté le 29 août 2012 - 12:11
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
Membre enregistré
3 651 messages
Popularité : +175 (223 votes)
Posté le 15 mai 2014 - 14:18
PROCEDURE Teclado(LOCAL HideUnhide)

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



in code in control

Teclado("Hide")