728x90
반응형
SMALL
안드로이드에서 키보드를 코드로 보이기 및 숨기기 할 수있는 코드입니다.
메소드로 만들어 필요할때 호출하여 사용하시면 좋습니다.
[소프트 키보드 보이기]
public void showKeyboard(Context context, EditText et) {
InputMethodManager manager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
manager.showSoftInput(et, 0);
}
[소프트 키보드 숨기기]
public void hiddenKeyboard(Context context, IBinder token) {
if (context != null) {
InputMethodManager inputManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(token, 0);
}
}
728x90
반응형
LIST
'dev > android' 카테고리의 다른 글
android 접속중인 와이파이 이름 가져오기 (15) | 2021.01.18 |
---|---|
Android Apache(아파치) 라이브러리 사용하기 (4) | 2021.01.06 |
Unknown URI:content://downloads/public_downloads 해결방법 (1) | 2019.06.13 |
안드로이드 underline center line 적용방법 (0) | 2019.01.01 |
안드로이드 HeadView & FooterView 커스텀 리스트뷰 (0) | 2019.01.01 |