소프트 키보드 보이기

2010. 12. 7. 20:29안드로이드 개발

온갖 별짓을 다해봐도 묵묵히 뜨지 않던 소프트 키보드가 토글 메소드를 호출하니까 허무하게 떠버렸다.

EditText editText = (EditText) findViewById(R.id.text);
editText.setFocusable(true);
editText.setFocusableInTouchMode(true);
editText.requestFocus();
              
InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
inputMgr.toggleSoftInput(0, 0);

쓰잘때기 없이 이런 것으로 헤매본지도 오래된 것 같다. -_-;;;;;;;;