I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking 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. Where can I find an example of it?

link|improve this question

1  
What if you have only one EditText and several buttons, like check boxes and radios? The only place you need the keyboard is in the single EditText. How do you register to know that something else was chosen/clicked in order to hide the keyboard? – kilaka Jun 1 '11 at 15:48
feedback

15 Answers

up vote 427 down vote accepted

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|improve this answer
2  
Perfect, just what i was looking for. – Vidar Vestnes Jul 10 '09 at 12:43
2  
Thanks this seems to work great if using 0 as the second parameter. But if I use InputMethodManager.HIDE_IMPLICIT_ONLY the keyboard is never hidden (although i'm not holding down menu). Any hints? – Roflcoptr Jun 23 '10 at 22:50
1  
Cool. Just to clarify, this only dismisses it if present, but won't prevent it from popping up, right? – Cheezmeister Feb 16 '11 at 19:48
1  
Of course you will need to set this back. Please verify how to undo this change. – Androider May 23 '11 at 13:36
1  
did not work for me in 2.3. On one screen I did not have to do anything explicit to not get the keyboard to show up but on another having to do do it. Joe's comment on this thread actually does the trick. stackoverflow.com/questions/1555109/… – CF_Maintainer Nov 7 '11 at 14:48
show 3 more comments
feedback

Also useful for hiding the soft keyboard is:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

This can be used to suppress the keyboard until the user actually touched the edittext view.

link|improve this answer
8  
This totally worked for me! – Bostone Oct 11 '10 at 20:54
2  
This worked for me and the one by RetoMeier didn't. – HRJ Apr 26 '11 at 14:17
this worked for me :) – Mayu Mayooresan Aug 1 '11 at 13:12
can i disable the dictionary in the soft keyboard programmatically? – Arindam Mukherjee Aug 29 '11 at 10:26
feedback

Please try this below code in oncreate()

EditText edtView=(EditText)findViewById(R.id.editTextConvertValue);
edtView.setInputType(0);
link|improve this answer
2  
This method works as a means of getting around the "can't hide the soft keyboard" bug in 2.0 and 2.1 as described in code.google.com/p/android/issues/detail?id=7115 ... the hideSoftInputFromWindow method listed above did not work when I tried it, but editView.setInputType(0) did. – Spike Williams Apr 17 '10 at 5:50
7  
This is legit per Javadoc (not a hack) though I would rewrite the method as editView.setInputType(InputType.TYPE_NULL); – Bostone Oct 11 '10 at 20:49
3  
If I use this for a password field, the field becomes a normal input (not replacing entered text by dots anymore) – Alex May 25 '11 at 15:40
this works, however, it hides the android:hint. i'm using Android 1.5 – Tirtha Jan 11 at 10:32
feedback

Meier's solution works for me too. In my case the top level of my App is a tabHost and I want to hide the keyword when switching tabs - I get the window token from the tabHost View.

   tabHost.setOnTabChangedListener(new OnTabChangeListener()
        {
        public void onTabChanged(String tabId)
            {
            InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(tabHost.getApplicationWindowToken(), 0);
            }
        }
link|improve this answer
thank you so much mcKoss.... :) you saved my day... – seethalakshmi May 7 at 9:04
feedback

Simplest way:

//Show soft-keyboard:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
//hide keyboard :
 getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
link|improve this answer
feedback

You must use the following code to hide the soft keyboard :

 InputMethodManager inputManager = (InputMethodManager)            
  Context.getSystemService(Context.INPUT_METHOD_SERVICE); 
    inputManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(),      
    InputMethodManager.HIDE_NOT_ALWAYS);
link|improve this answer
feedback

Hi i got one more solution to hide keyboard by :

InputMethodManager imm = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
    imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0);

Here pass HIDE_IMPLICIT_ONLY at the position of showFlag and 0 at the position of hiddenFlag. It will forcefully close soft Keyboard.

link|improve this answer
This worked for me while flipping the view ;) Thanks! – lomza Mar 28 at 7:26
feedback

from so searching, here I found an answer that works for me

// Show soft-keyboard:
        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);

// Hide soft-keyboard:
        getWindow().setSoftInputMode(
                WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
link|improve this answer
The only one that worked for my case. Thanks ! – Sebastien FERRAND Apr 23 at 8:01
The only one that worked for me too. Android 3.3. – Derzu 2 days ago
feedback

If all the other answers here don't work for you as you would like them to, there's another way of manually controlling the keyboard.

Create a function with that will manage some of the EditText's properties:

public void setEditTextFocus(boolean isFocused)
{
    searchEditText.setCursorVisible(isFocused);
    searchEditText.setFocusable(isFocused);
    searchEditText.setFocusableInTouchMode(isFocused);

    if (isFocused)
    {
        searchEditText.requestFocus();
    }
}

Then, make sure that onFocus of the EditText you open/close the keyboard:

        searchEditText.setOnFocusChangeListener(new OnFocusChangeListener()
        {
            @Override
            public void onFocusChange(View v, boolean hasFocus)
            {
                if (v == searchEditText)
                {
                    if (hasFocus)
                    {
                        //open keyboard
                        ((InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(searchEditText,
                                InputMethodManager.SHOW_FORCED);

                    }
                    else
                    { //close keyboard
                        ((InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(
                                searchEditText.getWindowToken(), 0);
                    }
                }
            }
        });

now, whenever you want to open the keyboard manually call:

setEditTextFocus(true);

And for closing call:

setEditTextFocus(false);
link|improve this answer
feedback

For force show and hide we need to use http://android-codes-examples.blogspot.com/2011/11/show-or-hide-soft-keyboard-on-opening.html

as shown on this blog

link|improve this answer
feedback

If you want to close the soft keyboard during a unit or functional test, you can do so by clicking the "back button" from your test:

// Close the soft keyboard from a Test
getInstrumentation().sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);

I put "back button" in quotes, since the above doesn't trigger the onBackPressed() for the Activity in question. It just closes the keyboard.

Make sure to pause for a little while before moving on, since it takes a little while to close the back button, so subsequent clicks to Views, etc., won't be registered until after a short pause (1 second is long enough ime).

link|improve this answer
feedback
protected void hideSoftKeyboard(EditText input) {
        input.setInputType(0);
        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(input.getWindowToken(), 0);

    }
link|improve this answer
feedback

Here's how you do it in Mono for Android (AKA MonoDroid)

InputMethodManager imm = GetSystemService (Context.InputMethodService) as InputMethodManager;
if (imm != null)
    imm.HideSoftInputFromWindow (searchbox.WindowToken , 0);
link|improve this answer
feedback

I'm using a custom keyboard to input an Hex number so I can't have the IMM keyboard show up...

In v3.2.4_r1 setSoftInputShownOnFocus(boolean show) was added to control weather or not to display the keyboard when a TextView gets focus, but its still hidden so reflection must be used:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2) {
    try {
        Method method = TextView.class.getMethod("setSoftInputShownOnFocus", boolean.class);
        method.invoke(mEditText, false);
    } catch (Exception e) {
        // Fallback to the second method
    }
}

For older versions, I got very good results (but far from perfect) with a OnGlobalLayoutListener, added with the aid of a ViewTreeObserver from my root view and then checking if the keyboard is shown like this:

@Override
public void onGlobalLayout() {
    Configuration config = getResources().getConfiguration();

    // Dont allow the default keyboard to show up
    if (config.keyboardHidden != Configuration.KEYBOARDHIDDEN_YES) {
        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(mRootView.getWindowToken(), 0);
    }
}

This last solution may show the keyboard for a split second and messes with the selection handles.

When in the keyboard enters full screen, onGlobalLayout isn't called. To avoid that, use TextView#setImeOptions(int) or in the TextView XML declaration:

android:imeOptions="actionNone|actionUnspecified|flagNoFullscreen|flagNoExtractUi"
link|improve this answer
feedback

Suppose u have edit textbox with id edsearch

and button with id btnsearch

btnsearch.setOnClickListener(new View.OnClickListener() {
        @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                imm.hideSoftInputFromWindow(edSearch.getWindowToken(), 0);
                imgCancel.setVisibility(View.GONE);
                edSearch.setText(""); }  });
link|improve this answer
feedback

protected by Jeff Atwood Jul 12 '10 at 23:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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