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