안드로이드 키보드


InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

EditText sendMsg = (EditText) findViewId(R.id.edit);

없애기
private void hideKeyboard(){
imm.hideSoftInputFromWindow(sendMsg.getWindowToken(), 0);
}
보이기
private void showKeyboard(){
imm.showSoftInput(sendMsg, 0);
}



+ Recent posts