vote up 4 vote down star
3

Im having an EditText and a Button in my layout. After writing inside the edit field and click on the Button, i want to hide the virtual keyboard. I guess there should be a simple, one or two liner to make this happen, but cant find any example of it.

Anyone with a suggestion?

flag

3 Answers

vote up 10 vote down check

You can force Android to hide the virtual keyboard using the InputMethodManager, calling hideSoftInputFromWindow, passing in the token of the window containing your edit field.

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

This will force the keyboard to be hidden in all situations. In some cases you will want to pass in InputMethodManager.HIDE_IMPLICIT_ONLY as the second parameter to ensure you only hide the keyboard when the user didn't explicitly force it to appear (by holding down menu).

link|flag
Perfect, just what i was looking for. – PHP Jedi Jul 10 at 12:43
vote up 0 vote down

Please try this below code in oncreate()

EditText edtView=(EditText)findViewById(R.id.editTextConvertValue); edtView.setInputType(0);

link|flag
vote up 0 vote down

Doesn't work....

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.