I have an EditText and a Button in my layout. After writing in the edit field and clicking on the Button, I want to hide the virtual keyboard. I assume that there's a simple, one- or two-liner to make this happen. Where can I find an example of it?
|
|
|||||||
|
|
You can force Android to hide the virtual keyboard using the InputMethodManager, calling
This will force the keyboard to be hidden in all situations. In some cases you will want to pass in |
|||||||||||||||||||||
|
|
Also useful for hiding the soft keyboard is:
This can be used to suppress the keyboard until the user actually touches the edittext view. |
|||||||||||||||||||
|
|
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.
|
|||
|
|
|
Please try this below code in
|
|||||||||||||||||
|
|
You must use the following code to hide the soft keyboard :
|
|||||||||||||||||
|
|
Hi i got one more solution to hide keyboard by :
Here pass HIDE_IMPLICIT_ONLY at the position of showFlag and 0 at the position of hiddenFlag. It will forcefully close soft Keyboard. |
|||||||
|
|
Simplest way:
|
|||
|
|
|
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
Then, make sure that onFocus of the
now, whenever you want to open the keyboard manually call:
And for closing call:
|
||||
|
|
|||
|
|
|
from so searching, here I found an answer that works for me
|
|||
|
|
|
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
For older versions, I got very good results (but far from perfect) with a
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:
Update: Just found what dialogs use to never show the keyboard and works in all versions:
|
|||||||||
|
|
Saurabh Pareek has the best answer so far. Might as well use the correct flags, though.
Example of real use
|
|||
|
Here's how you do it in Mono for Android (AKA MonoDroid)
|
|||
|
|
|
Above answers work for different scenario's but If you want to hide the keyboard inside a view and struggling to get the right context try this:
and to get the context fetch it from constructor:)
|
|||
|
|
|
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:
I put "back button" in quotes, since the above doesn't trigger the 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). |
||||
|
|
|
You could also look into using setImeOption on the EditText. I just had a very simular situation where my layout contained an EditText and a search button. When I discovered I could just set the ime option to "actionSearch" on my editText, I realized I didn't even need a search button anymore. The soft keyboard (in this mode) has a search icon, which can be used to kick off the search (and the keyboard closes itself as you would expect). |
|||
|
|
For my case, I was using the a SearchView in the actionbar. After a user performs a search, the keyboard would pop open again. Using the InputMethodManager did not close the keyboard. I had to clearFocus and set the focusable of the search view to false:
|
|||
|
I have spent more than two days working through all of the solutions posted in the thread and have found them lacking in one way or another. My exact requirement is to have a button that will with 100% reliability show or hide the on screen keyboard. When the keyboard is in its hidden state is should not re-appear, no matter what input fields the user clicks on. When it is in its visible state the keyboard should not disappear no matter what buttons the user clicks. This needs to work on Android 2.2+ all the way up to the latest devices. You can see a working implementation of this in my app clean RPN. After testing many of the suggested answers on a number of different phones (including froyo and gingerbread devices) it became apparent that android apps can reliably:
For me, temporarily hiding the keyboard is not enough. On some devices it will re-appear as soon as a new text field is focused. As my app uses multiple text fields on one page, focusing a new text field will cause the hidden keyboard to pop back up again. Unfortunately item 2 and 3 on the list only work reliability when an activity is being started. Once the activity has become visible you cannot permanently hide or show the keyboard. The trick is to actually restart your activity when the user presses the keyboard toggle button. In my app when the user presses on the toggle keyboard button, the following code runs:
This causes the current activity to have its state saved into a Bundle, and then the activity is started, passing through an boolean which indicates if the keyboard should be shown or hidden. Inside the onCreate method the following code is run:
If the soft keyboard should be shown, then the InputMethodManager is told to show the keyboard and the window is instructed to make the soft input always visible. If the soft keyboard should be hidden then the WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM is set. This approach works reliably on all devices I have tested on - from a 4 year old HTC phone running android 2.2 up to a nexus 7 running 4.2.2. The only disadvantage with this approach is you need to be careful with handling the back button. As my app essentially only has one screen (its a calculator) I can override onBackPressed() and return to the devices home screen. |
|||||||
|
|
sometimes all you want is the enter button to fold the keyboard: give the EditText box you have the attribute android:imeOptions="actionDone" this will change the Enter button to a Done button that will close the keyboard. |
|||
|
|
|
I created a layout partially from xml and partially from a custom layout engine, which is all handled in-code. The only thing that worked for me was to keep track of whether or not the keyboard was open, and use the keyboard toggle method as follows:
|
|||
|
|
|
|||
|
|
after that call on onTouchListener:
|
|||
|
|
|
Tried all here in desperation, combining all methods, and of course the keyboard will not close in Android 4.0.3 (it did work in Honeicomb AFAIR). Then suddenly I found an apparently winning combination:
combined with your usual recipes
hope this stops somebody from committing suicide .. I was close to it. Of course, I have no idea why it works. |
|||
|
|
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.




