Search code examples
androidviewclient

how to hide softkeyboard using androidviewclient


I am UI and in that in edittext I type and then click button. The softkeyboard stays popped up. Actually before clicking button I want to hide keyboard. How to do it ?

Regards,

miten.


Solution

  • InputMethodManager imm = (InputMethodManager)getSystemService(Service.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(findViewById(R.id.value).getWindowToken(), 0);