[안드로이드] EditText 엔터키로 입력 받기
프로그래밍/안드로이드2016. 9. 3. 02:51
반응형
1 | android:imeOptions="actionSearch" | cs |
XML에 EditText 속성에 위와 같은 옵션을 넣고
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | searchbox = (EditText) findViewById(R.id.edtsearch); searchbox.setOnEditorActionListener(new TextView.OnEditorActionListener() { // EDITTEXT 검색키 눌렀을 경우 처리 부분 @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { switch (actionId) { case EditorInfo.IME_ACTION_SEARCH: Toast.makeText(getApplicationContext(), "검색", Toast.LENGTH_LONG).show(); return true; default: return false; } } }); // setOnEditorActionListener END | cs |
자바소스에 위와 같이 처리 부분을 넣는다.
반응형
'프로그래밍 > 안드로이드' 카테고리의 다른 글
[안드로이드] 평행이동 함수 translate (0) | 2016.09.03 |
---|---|
[안드로이드] EditText 입력시 '완료' 버튼을 '검색' 아이콘으로 변경하기 (0) | 2016.09.03 |
[안드로이드] 반전 가능한 거울앱 추천!! (0) | 2016.08.29 |
[안드로이드 추천앱] 간편한 돋보기, 현미경 앱 (0) | 2016.08.26 |
[안드로이드] 'Bitmap too large to be uploaded into a texture' 에러 대처법 (0) | 2016.08.26 |