1. 키보드 숨기기
private void hideKeyboard() {
if (this.getCurrentFocus() != null) {
InputMethodManager imm = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), 0);
}
}
2. 키보드 자동실행 막기
AndroidManifest.xml에서 자동실행을 막기 원하는 액티비티에 한 줄만 추가해주면 됩니다.
android:windowSoftInputMode="stateAlwaysHidden"
반응형
'DEV > JAVA&Android' 카테고리의 다른 글
[Android] Android Studio 3.0에서 Layout Preview 오류 (0) | 2017.12.21 |
---|---|
[Android] 다이얼로그 소프트키보드 열지 않기 (0) | 2017.11.16 |
[안드로이드] EditText InputType 속성값 종류 (0) | 2017.07.07 |
Android Studio 2.2이상 Layout Preview 한글 깨짐 현상 해결 방법 (0) | 2017.06.15 |
SHA3 암호화 (0) | 2017.03.15 |