728x90
안녕하세요 오늘은 엔터(다음)키를 눌렀을 때 EditText의 포커스가 아래로 이동하게 끔 구현해 보겠습니다.
xml파일입니다.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="320dp"
android:layout_height="400dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textSize="18dp"
android:textColor="@color/black"
android:text="아이디" />
<EditText
android:id="@+id/user_id"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
android:textSize="18dp"
android:textColor="@color/black"
android:nextFocusDown="@+id/user_pw"
android:singleLine="true"
android:maxLength="20"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_marginTop="20dp">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textSize="18dp"
android:textColor="@color/black"
android:text="비밀번호" />
<EditText
android:id="@+id/user_pw"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
android:inputType="textPassword"
android:textSize="18dp"
android:textColor="@color/black"
android:nextFocusDown="@+id/user_pw_ck"
android:singleLine="true"
android:maxLength="20"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_marginTop="20dp">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textSize="18dp"
android:textColor="@color/black"
android:text="비밀번호 확인" />
<EditText
android:id="@+id/user_pw_ck"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
android:inputType="textPassword"
android:singleLine="true"
android:textColor="@color/black"
android:textSize="18dp"
android:nextFocusDown="@+id/user_name"
android:maxLength="20"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_marginTop="20dp">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textSize="18dp"
android:textColor="@color/black"
android:text="이름" />
<EditText
android:id="@+id/user_name"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
android:textSize="18dp"
android:textColor="@color/black"
android:singleLine="true"
android:imeOptions="actionDone"
android:maxLength="10"/>
</LinearLayout>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
andorid : singleLine을 통해 한 줄만 입력할 수 있게끔 해주고 android : nextFocusDown에 이동할 EditText의 아이디를 입력해 주면 엔터(다음)키를 입력했을 때 해당 EditText로 포커스가 이동합니다.
'안드로이드 자바' 카테고리의 다른 글
[Android][Java] BarChart 그리기 (0) | 2023.03.12 |
---|---|
[Android][Java] 브로드캐스트리시버를 이용해 문자 수신 받기 (0) | 2023.03.11 |
[JAVA][Android] Kakao 로그인 API 사용하기 (7) | 2023.03.06 |
[Android][JAVA] 카메라 연결 및 화면에 비디오 출력하기 (0) | 2023.03.02 |
[Android][Java] textview로 만든 메뉴 선택 효과 따라하기 (0) | 2023.03.01 |