2017년 8월 10일 목요일

안드로이드 키보드 바로 올라오게 하기, 키보드 올리기, 내리기


안드로이드 키보드 바로 올라오게 하기, 키보드 올리기, 내리기

샘플)
//키보드 올리기
dlgCategoryAdd.etCategoryEnterName.requestFocus();
InputMethodManager imm = (InputMethodManager)actMain.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(imm.SHOW_FORCED, imm.HIDE_IMPLICIT_ONLY);

//키보드 내리기
InputMethodManager imm = (InputMethodManager)actMain.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(imm.HIDE_IMPLICIT_ONLY, 0);

have a nice day~



댓글 없음:

댓글 쓰기