Keep Android Keyboard Always open

Hello Everyone,
My Issue is to keep Android Keyboard Always open after button submit.
Right now when i press submit button keyboard hides. But i want to keep opening keyboard.
I have gone through every tricks and come here finally to get rid of this issue.

**
**strong text**

You can try to handle the event on which event will hide

window.addEventListener('native.keyboardhide',keyboardHideHandler);

function keyboardHideHandler(e){
Keyboard.show();
}

I believe this just shows the keyboard again after it’s hidden. So from a User Experience perspective, it feels like it’s jittery