id가 명시되어있지 않은 다른 부분을 터치했을 때 키보드가 보여져있는 상태면 키보드를 내리고 싶어서 서치해 봤다. 의외로 금방 찾았다. @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.")) { // view 의 id 가 명시되어..