Friday, June 18, 2010

Android - Closing soft input on EditText

HHHHHHMMMMM too much searching done for this and found as

If you know about the EditText for what the soft input pad is open then its really easy to close.

EditText myEditText = (EditText) findViewById(R.id.EditText01);

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);

And you made it invisible..

No comments:

Post a Comment