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
- Chat GPT
- Linux 패키지 관리자
- InvalidTestClassError
- 팝업 바깥 레이어
- 챗지피티
- docker에서 mysql 실행
- Github 등록
- AWS
- Android Flavor
- Github Token
- Location Permission
- codeigniter
- git cannot identify version of git executable
- 5회 인증
- sourceSet
- mac 패키지 관리자
- 여러 개
- junit
- MySQL
- Execution failed for task ':test'.
- 다음으로 이동
- git
- Android Studio
- PHP Storm
- XML Opacity
- 안드로이드 자동으로 포커싱
- php
- 챗GPT
- TextView 일부분
- nextFocusDown
Archives
- Today
- Total
목록android 키보드 다음 (1)
128june
[Android Studio] 소프트 키패드 다음/완료/로그인/키패드 없애기 동작 수행
다음 android:nextFocusDown="@+id/다음 나올 id" 완료 : xml에서 inputType을 설정해주면 자동으로 완료가 됨 android:inputType="number" 로그인 동작 먼저 setImeOptions를 설정한 후 onEditorAction을 설정 "EditText 변수".setImeOptions(EditorInfo.IME_ACTION_DONE); "EditText 변수".setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if(actionId == Edito..
Android Studio
2020. 8. 6. 17:33