반응형

EditText 클릭 시 키보드 보이고, 다시 한번 클릭하면 사라지게 구현하는 코드.

 

 

 

boolean keyboardShow = true;
InputMethodManager imm = (InputMethodManager) 

                                       getSystemService(INPUT_METHOD_SERVICE);
if(keyboardShow){
    imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken()0);
    keyboardShow = false;
}else{
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken()0);
    keyboardShow = true;
}

반응형
,