본문 바로가기
Smart Device/Android

문자 입력기 IME 보이기 / 감추기

by 언덕너머에 2014. 5. 8.
- 보이기
EdidText editor = (EditText)findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//only will trigger it if no physical keyboard is open
mgr.showSoftInput(editor, InputMethodManager.SHOW_IMPLICIT);

- 감추기
EdidText editor = (EditText)findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//only will trigger it if no physical keyboard is open
mgr.hideSoftInputFromWindow(editor.getWindowToken(), 0);


'Smart Device > Android' 카테고리의 다른 글

에뮬레이터에서 단말의 방향을 전환하는 단축키  (0) 2015.07.08
전체 화면 보기  (0) 2015.07.08
Amazon Firephone 이클립스(eclipse)에 연결하기  (0) 2015.03.29
setRetainInstance  (0) 2014.05.10
PendingIntent  (0) 2014.05.08