Hide keyboard but keep focus

Hello, i want to when i select the input or focus the keyboard keep hide, but if i want to show it i can do with some function, i try this but does not work.

window.addEventListener('native.keyboardshow', keyboardShowHandler);
function keyboardShowHandler(e){
  cordova.plugins.Keyboard.close();
    $timeout(function () {
        document.getElementById("lectura").focus();
    }, 1500);
}

but when the keyboard get close the focus is removed and when i put the focus again the keyboard is show, so i need to disable keyboard but keep the focus, if anyone can do this, i will be very thanful.

1 Like

Tengo el mismo problema…