Oct 8, 2013

[android] How to hide keyboard

If you are frustrated because soft keyboard of your app does not disappear, try this. 

InputMethodManager imm = (InputMethodManager) getSystemService (Context.INPUT_METHOD_SERVICE); 

imm.toggleSoftInput(0,  0);  

No comments:

Post a Comment