[안드로이드 Compose] TextField, 완료시 다음 TextField로 이동
·
안드로이드
먼저 keyboardOption에서 ImeAction.Next를 인자로 넘겨주자. OutlinedTextField( ... keyboardOptions = KeyboardOptions( keyboardType = type, imeAction = ImeAction.Next ) ... ) 처음에는 옵션만 지정해주면 되는줄 알았는데, Action도 같이 지정해줘야한다. ImeAction.Next를 지정했으므로 Next에 대한 행동을 정의해줘야한다. 먼저 FocusManager를 통해 포커싱된 TextField의 위치를 잡고, 그 아래 방향으로 포커싱을 맞춰야한다. OutlinedTextField( ... keyboardOptions = KeyboardOptions( keyboardType = type, ime..