일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- git cannot identify version of git executable
- 여러 개
- 5회 인증
- 팝업 바깥 레이어
- nextFocusDown
- PHP Storm
- Android Flavor
- MySQL
- 안드로이드 자동으로 포커싱
- mac 패키지 관리자
- codeigniter
- git
- InvalidTestClassError
- docker에서 mysql 실행
- 다음으로 이동
- 챗GPT
- 챗지피티
- Github Token
- Android Studio
- php
- Linux 패키지 관리자
- Execution failed for task ':test'.
- sourceSet
- Chat GPT
- Github 등록
- XML Opacity
- AWS
- TextView 일부분
- Location Permission
- junit
- Today
- Total
목록nextFocusDown (2)
128june
원하는 포커스로 이동하는 방법은 간단합니다. android:nextFocusDown="@id/원하는 위치" nextFocusDown 우측에 원하는 위치로 이동하면 됩니다. [참고] EditText가 줄바꿈이 될 때는 아래와 같이 android:inputType="number" inputType을 number로 변경하면 자연스럽게 이동합니다. EditText inputType 종류는 아래 블로그에 정리되어있습니다! - 128june.tistory.com/65 [Android Studio] EditText - inputType 종류 EditText의 inputType 종류는 다음과 같습니다. 속성값 입력 가능한 값 설명 none 모든 문자 / 기호 / 숫자 * 기본 EditText * 줄바꿈 가능 text ..
다음 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..