에디트 텍스트를 클릭하면 키보드가 올라오는데
입력을 마치고 뒤로가기로 키보드를 내리지 않고 다른 버튼을 눌렀을 떄
키보드를 내리게 하고 싶다면
/////////////////////////////////////////////
private InputMethodManager imm;
imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
이런식으로 InputMethodManager 를 선언한 후
키보드를 내리고 싶을 떄
imm.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
요렇게 사용해주면 키보드가 내려간다..
'공부 > Android' 카테고리의 다른 글
(android) intent.putExtra 로 객체 넘기기 [Parcelable] (0) | 2016.11.15 |
---|---|
(android) recyclerview scroll이 느린 현상 (0) | 2016.11.08 |
(android) 키보드 올라올 때 버튼도 같이 올라오는 현상 (0) | 2016.11.07 |
(공공데이터 API) xml parsing (string to xml) (0) | 2016.10.23 |
(공공데이터 API) SERVICE_KEY_IS_NOT_REGISTERED_ERROR (1) | 2016.10.22 |