반응형
EditText를 사용할 때 키보드를 내려야할 경우가 종종 있습니다.
예를들어 Fragment 화면 전환할 경우 EditText 키보드가 저절로 안내려가죠..
아래 메소드 참고하세요
public static void downKeyboard(Context context, EditText editText) {
InputMethodManager mInputMethodManager = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
mInputMethodManager.hideSoftInputFromWindow(editText.getWindowToken(), 0);
}