I have many EditText that I set some of those to setInputType(InputType.TYPE_NULL) and let our Input View to handle the insert data.
But some of them, I use original Keyboard from EditText.
When I touch normal EditText normal Keyboard show up and from this state when I touch my custom EditText normal Keyboard doesn’t hide instantly and my custom input show above that Keyboard.
Thanks.
Add following method to your activity in which you want to hide your in-built
SoftKeyBoard.Now in
onCreateadd following lines aftersetContentView().Here you can open your custom keyboard as it hides the in-built one. I hope this can help you out.