Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다음으로 이동
- codeigniter
- php
- git cannot identify version of git executable
- mac 패키지 관리자
- Github Token
- nextFocusDown
- Execution failed for task ':test'.
- git
- 챗GPT
- Linux 패키지 관리자
- PHP Storm
- 안드로이드 자동으로 포커싱
- TextView 일부분
- InvalidTestClassError
- Android Studio
- MySQL
- junit
- docker에서 mysql 실행
- XML Opacity
- 5회 인증
- Location Permission
- AWS
- sourceSet
- Github 등록
- 팝업 바깥 레이어
- Chat GPT
- Android Flavor
- 챗지피티
- 여러 개
Archives
- Today
- Total
목록키보드 입력 엔터 처리 (1)
128june
[Android Studio] editText 키보드에서 엔터 이벤트 처리하기
// editText 입력 완료 후 엔터 이벤트 처리하기 _변수_.setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { /* 여기 안에서 처리하면 됨 */ // 검색 페이지로 intent Intent it = new Intent(getContext(), 해당 페이지.class); it.putExtra("text", "기타 텍스트 넘김"); startActivity(it); /* 여기 안에서 처리하면 됨 */ return true; } });
Android Studio
2020. 7. 21. 11:06