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
- node.js string
- rest api 엑셀다운
- spring boot rest api download excel
- vscode 설치
- rest형식으로 workbook 다운
- rest api poi down
- nodejs string
- 코틀린 스트림 함수
- 코틀린 listOf
- spring boot rest api return excel file
- ResponseEntity file download
- nodejs length
- spring rest api download excel
- javascript string 함수
- visualstudiocode설치
- nodejs substr
- nodejs split
- Manifest
- nodejs indexof
- 오아랜턴
- VSCODE설치
- 오아올라이트
- 캠핑용 led랜턴
- spring boot rest api export excel file
- 캠핑용랜턴
- spring rest api to download excel file
- rest api poi 다운
- 충전식 랜턴
- nodejs substring
- nodejs 함수
Archives
- Today
- Total
블랙디의 개발새발
[안드로이드] android edittext next focus 본문
Android editText next focus
nextFocusUp nextFocusDown nextFocusLeft nextFocusRight 동적생성
안녕하세요 블랙디입니다.
오늘은 안드로이드 view를 구성할때 많이 사용하는 EditText next focus에 대해서 알아보겠습니다.
EditText에서 다음 포커스를 설정하고 싶을때는 두가지 방법이 있습니다.
하나는 xml에서 id값을 활용하여 nextFocus를 주는법
둘째는 동적으로 java 파일에서 edittext를 선언하여 setOnEditorActionListener 리스너를 사용하여 특정 동작을
지정하시면 됩니다.
종류
nextFocusUp - 다음 focus 위치는 editText 위
nextFocusDown - 다음 focus 위치는 editText 아래
nextFocusLeft - 다음 focus 위치는 editText 좌측
nextFocusRight - 다음 focus 위치는 editText 우측
사용법
EditText 위젯을 만들어줍니다.
키보드에서 다음을 눌렀을때 next focus으로 올 EditText의 ID를 선업합니다.
동적생성
EditText.setNextFocusUpId(int);
EditText.setNextFocusDownId(int);
EditText.setNextFocusLeftId(int);
EditText.setNextFocusRightId(int);
위의 괄호안에는 다음 focus로 올 id값을 적어줍니다.
'IT Program > Android Tip' 카테고리의 다른 글
[안드로이드] EditText MaxLength (0) | 2018.11.07 |
---|---|
[안드로이드] android strings translatable (0) | 2018.11.05 |
[안드로이드] addTextChangedListener TextWatcher (0) | 2018.11.01 |
[안드로이드] 안드로이드 생명주기 수명주기 (3) | 2018.10.28 |
[안드로이드] 안드로이드 권한 체크, 퍼미션 체크 하기 (0) | 2018.10.26 |
Comments