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