Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical keyboard) and I have two problems:

  1. When my Activity is displayed, my EditText is focused but the keyboard is not displayed, I need to click again on it to show the keyboard (it should be displayed when my Activity is displayed).

  2. And when I click done on the keyboard, the keyboard is dissmissed but the EditText stays focused and y don't want (because my edit is done).

To resume, my problem is to have something more like on the iPhone: which keep the keyboard sync with my EditText state (focused / not focused) and of course does not present a soft-keyboard if there is a physical one.

share|improve this question
Show us the code you are using. The soft qwerty should show up automatically of an edit text – Reno Feb 24 '11 at 14:31
I just have a basic EditText like: <EditText android:id="@+id/myEditText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:imeOptions="actionDone" /> And on my activity I have this: EditText editTxt = (EditText) findViewById(R.id.myEditText); editTxt.requestFocus(); – Ludovic Landry Feb 24 '11 at 14:40

8 Answers

up vote 51 down vote accepted

To force the soft keyboard to appear, you can use

EditText yourEditText= (EditText) findViewById(R.id.yourEditText);
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(yourEditText, InputMethodManager.SHOW_IMPLICIT);

And for removing the focus on EditText, saddly you need to have a dummy View to grab focus.

I hope this helps


To close it you can use

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(yourEditText.getWindowToken(), 0);
share|improve this answer
If I do this, the soft-keyboard is shown when the activity appears (it's good) but when my focus leave the EditText and go to a Button for example, the keyboard stays (that's bad). – Ludovic Landry Feb 24 '11 at 15:14
ill edit the answer – raukodraug Feb 24 '11 at 16:02
So, I need to check my EditText focus, there is no automatic way to do that. I think it's just because the android philosophy about the keyboard is different than the Apple one on the iPhone. – Ludovic Landry Feb 24 '11 at 16:45
so, does this help your problem? – raukodraug Feb 24 '11 at 17:16
Doesn't work for me with an EditText in a dialog which already has focus. Not sure why. – Matthias Mar 11 at 16:02

I had the same problem. Immediately after editText VISABILITY change from GONE to VISIBLE, I had to set the focus and display the soft keyboard. I achieved this using the following code:

        (new Handler()).postDelayed(new Runnable() {

            public void run() {
//              ((EditText) findViewById(R.id.et_find)).requestFocus();
//              
                EditText yourEditText= (EditText) findViewById(R.id.et_find);
//              InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
//              imm.showSoftInput(yourEditText, InputMethodManager.SHOW_IMPLICIT);

                yourEditText.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN , 0, 0, 0));
                yourEditText.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_UP , 0, 0, 0));                       

            }
        }, 200);

It works for me with 100ms delay, but failed without any delay or with only a delay of 1ms.

Commented part of code shows another approach, which works only on some devices. I tested on OS versions 2.2 (emulator), 2.2.1 (real device) and 1.6 (emulator).

This approach saved me a lot of pain.

share|improve this answer
1  
That's genius, Mike. A twisted genius, perhaps, but "works for me." – Nuthatch Dec 28 '11 at 20:34
I don't have the slightest idea what this actually does, but it works perfectly for me. Thanks! – jellyfish Feb 29 '12 at 20:39
7  
I didn't know something could be so ugly and so beautiful at the same time. Thank you so much! – mkerley Mar 21 '12 at 21:46
4  
@jellyfish this simulates a tap on the EditText. For others reading this, instead of creating a new Handler you could also use the View.postDelayed() method on the yourEditText widget itself. – Turbo Sep 20 '12 at 19:02
1  
This is a hack - much better solution by David Chandler. – Ben Bederson Feb 23 at 18:53
show 7 more comments

To cause the keyboard to appear, use

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

This method is more reliable than invoking the InputMethodManager directly.

To close it, use

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
share|improve this answer
Can somebody please explain why this is more reliable than directly invoking InputMethodManager? (For one, it doesn't work, unlike raukodraug's solution.) – Matt Quiros May 3 at 8:00
Does not work for me either. Working in Android 2.3.5. raukodraug's solution does work for me. Searched for version dependency but could not find one. – Hugo Logmans May 6 at 13:38

The following code is pillaged from the Google's source code for SearchView. Seems to work, although I haven't yet checked it on lesser versions of Android.

    private Runnable mShowImeRunnable = new Runnable() {
    public void run() {
        InputMethodManager imm = (InputMethodManager) getContext()
                .getSystemService(Context.INPUT_METHOD_SERVICE);

        if (imm != null) {
            imm.showSoftInput(editText,0);
        }
    }
};

private void setImeVisibility(final boolean visible) {
    if (visible) {
        post(mShowImeRunnable);
    } else {
        removeCallbacks(mShowImeRunnable);
        InputMethodManager imm = (InputMethodManager) getContext()
                .getSystemService(Context.INPUT_METHOD_SERVICE);

        if (imm != null) {
            imm.hideSoftInputFromWindow(getWindowToken(), 0);
        }
    }
}

Then in addition, the following code needs to be added as the Control/Activity is created. (In my case it's a composite control, rather than an activity).

        this.editText
            .setOnFocusChangeListener(new View.OnFocusChangeListener() {
                public void onFocusChange(View v, boolean hasFocus) {
                    if (hasFocus) {
                        setImeVisibility(true);
                    } else {
                        setImeVisibility(false);
                    }
                }
            });
share|improve this answer
Thanks! It works amazingly well. And it's the solution I'm more comfortable with from all the answers and topics I've been reading on this issue. – Rui Jan 22 at 19:38
5  
:-D setImeVisibility(hasFocus)? – Matthias Mar 11 at 16:04
I tried this method since I was actually "rolling my own search view" (didn't want to have to do that but there were reasons). This worked for me except for at launch of the activity. I added android:windowSoftInputMode="alwaysVisible" to the activity and already had requestFocus() being called on the edit text. Works like a champ. – javahead76 Mar 22 at 16:09
Any idea the need of removeCallbacks(mShowImeRunnable) ? I thought once the runnable is picked to run from queue, it will be removed from the queue at the same time as well? – Cheok Yan Cheng Mar 31 at 3:55

I have had some recent luck in some simple cases with the code below. I haven't finished all testing but....

EditText input = (EditText) findViewById(R.id.Input);
input.requestFocus();    
input.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN , 0, 0, 0));
input.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_UP , 0, 0, 0));

And presto the keyboard shows up.

share|improve this answer
Where did u place this code? – Ted Oct 18 '11 at 20:20
For my case I had a button to add some optional information. In the button.onClick handler the above code was added to force the soft keyboard to appear for the input of the optional info. Droid 2.2.2 – Dent Oct 18 '11 at 23:22

Believe or not my problem with Soft Keyboard was resolved when I discovered that the Activities animations can disable the Soft Keyboard. When you call the intent with the

i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);

and

overridePendingTransition(0, 0);

It can hide the Soft Keyboard and there isn't a way to show it.

share|improve this answer

android:windowSoftInputMode="stateAlwaysVisible" -> in manifest File.

edittext.requestFocus(); -> in code.

This will open soft keyboard on which edit-text has request focus as activity appears.

share|improve this answer

just add android:windowSoftInputMode="stateHidden" in manifest file...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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