- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[안드로이드] 안드로이드 editview 관련 스크린키보드가 Show 되어있는지 확인하기, OR 키보드 숨기기,보이기 본문
[안드로이드] 안드로이드 editview 관련 스크린키보드가 Show 되어있는지 확인하기, OR 키보드 숨기기,보이기
드럼치는한동이 2016. 5. 23. 13:08/////////////////////////////////////////////////////////////////////////////
출처: http://maluchi.cafe24.com/xe/index.php?mid=MyAndroidTips&document_srl=26249
1. Hide 시키는 방법
1.
EditText edit = (EditText)
this
.findViewById(R.id.edtUrl);
2.
3.
InputMethodManager im = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
4.
im.hideSoftInputFromWindow(edit.getWindowToken(),
0
);
2. Show 시키는 방법
1.
EditText edit = (EditText)
this
.findViewById(R.id.edtUrl);
2.
3.
InputMethodManager im = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
4.
im.showSoftInputFromInputMethod(edit.getApplicationWindowToken(), InputMethodManager.SHOW_FORCED);
5.
6.
or
7.
8.
im.showSoftInput(edit,
0
);
////////////////////////////////////////////////////////////////////////////
class Test.....
{
EditText _editChat = new EditText (this);
................// EditText 이것저것 설정
InputMethodManager _immKeyboard = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
getSystemService(Context.INPUT_METHOD_SERVICE);
// 키보드를 숨겨준다.
//키보드가 열려있는지 확인해 준다.
{
// 확인
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////
1. 키보드 감추기
'★─Programing > ☆─Android' 카테고리의 다른 글
[안드로이드] Spannable 사용하기 (0) | 2016.05.31 |
---|---|
[안드로이드] 동적으로 layout width, height 변경하기 (0) | 2016.05.27 |
[안드로이드] Android Bluetooth (1) | 2013.11.19 |
[안드로이드] Bluetooth UUID (0) | 2013.11.19 |
[안드로이드] TextView 줄바꿈을 글자 단위로 하기 (1) | 2013.11.19 |