PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Hide OnScreenKeyboard android
Hide OnScreenKeyboard android
Iniciado por Robin, ago., 29 2012 12:11 PM - 1 resposta
Membro registado
2 mensagems
Publicado em agosto, 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
Membro registado
3.659 mensagems
Popularité : +175 (223 votes)
Publicado em maio, 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")