Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android:How do I force the soft keyboard to close when it has been forced to open?

Tags:

android

I have an EditText in my Activity. As soon as the Activity starts I force the soft keyboard to open using.

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
    imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}

Now if the soft keypad is open and I press the home button, it remains open. How can I force it close on home press?

like image 219
Vibhuti Avatar asked Jan 10 '12 09:01

Vibhuti


2 Answers

InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.hideSoftInputFromWindow(Your Button.getWindowToken(), 0);
like image 102
Rishi Avatar answered Nov 02 '22 20:11

Rishi


@Override
public boolean dispatchTouchEvent(MotionEvent event) {
    View view = getCurrentFocus();
    boolean ret = super.dispatchTouchEvent(event);

    if (view instanceof EditText) {
        View w = getCurrentFocus();
        int scrcoords[] = new int[2];
        w.getLocationOnScreen(scrcoords);
        float x = event.getRawX() + w.getLeft() - scrcoords[0];
        float y = event.getRawY() + w.getTop() - scrcoords[1];

        // Log.d("Activity", "Touch event "+event.getRawX()+","+event.getRawY()+" "+x+","+y+" rect "+w.getLeft()+","+w.getTop()+","+w.getRight()+","+w.getBottom()+" coords "+scrcoords[0]+","+scrcoords[1]);
        if (event.getAction() == MotionEvent.ACTION_UP && (x < w.getLeft() || x >= w.getRight() || y < w.getTop() || y > w.getBottom()) ) { 
            InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
        }
    }
    return ret;
}

This code closes the keyboard when you touch anywhere on the screen.

like image 34
Rashmi.B Avatar answered Nov 02 '22 19:11

Rashmi.B