Szukaj…


Ukryj klawiaturę, gdy użytkownik stuknie gdziekolwiek indziej na ekranie

Dodaj kod do swojej działalności .

Działa to również w przypadku Fragment , bez potrzeby dodawania tego kodu do Fragment .

@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
    View view = getCurrentFocus();
    if (view != null && (ev.getAction() == MotionEvent.ACTION_UP || ev.getAction() == MotionEvent.ACTION_MOVE) && view instanceof EditText && !view.getClass().getName().startsWith("android.webkit.")) {
        int scrcoords[] = new int[2];
        view.getLocationOnScreen(scrcoords);
        float x = ev.getRawX() + view.getLeft() - scrcoords[0];
        float y = ev.getRawY() + view.getTop() - scrcoords[1];
        if (x < view.getLeft() || x > view.getRight() || y < view.getTop() || y > view.getBottom())
        ((InputMethodManager)this.getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow((this.getWindow().getDecorView().getApplicationWindowToken()), 0);
    }
    return super.dispatchTouchEvent(ev);
}

Zarejestruj połączenie zwrotne dla klawiatury otwierającej i zamykającej

Chodzi o to, aby zmierzyć układ przed i po każdej zmianie, a jeśli nastąpi znacząca zmiana, możesz być pewien, że jest to klawiatura programowa.

// A variable to hold the last content layout hight
private int mLastContentHeight = 0;

private ViewTreeObserver.OnGlobalLayoutListener keyboardLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
    @Override public void onGlobalLayout() {
        int currentContentHeight = findViewById(Window.ID_ANDROID_CONTENT).getHeight();

        if (mLastContentHeight > currentContentHeight + 100) {
            Timber.d("onGlobalLayout: Keyboard is open");
            mLastContentHeight = currentContentHeight;
        } else if (currentContentHeight > mLastContentHeight + 100) {
            Timber.d("onGlobalLayout: Keyboard is closed");
            mLastContentHeight = currentContentHeight;
        }
    }
};

następnie w naszym parametrze onCreate ustaw wartość początkową dla mLastContentHeight

mLastContentHeight = findViewById(Window.ID_ANDROID_CONTENT).getHeight();

i dodaj słuchacza

rootView.getViewTreeObserver().addOnGlobalLayoutListener(keyboardLayoutListener);

nie zapomnij usunąć słuchacza przy destroy

rootView.getViewTreeObserver().removeOnGlobalLayoutListener(keyboardLayoutListener);


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow