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 | 31 |
Tags
- sourceSet
- 챗GPT
- XML Opacity
- Android Studio
- nextFocusDown
- PHP Storm
- git cannot identify version of git executable
- InvalidTestClassError
- php
- Github Token
- 안드로이드 자동으로 포커싱
- git
- docker에서 mysql 실행
- Linux 패키지 관리자
- 여러 개
- Android Flavor
- Chat GPT
- Location Permission
- Execution failed for task ':test'.
- junit
- Github 등록
- MySQL
- AWS
- 다음으로 이동
- codeigniter
- 5회 인증
- 팝업 바깥 레이어
- 챗지피티
- mac 패키지 관리자
- TextView 일부분
Archives
- Today
- Total
목록editText 엔터 (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