0

RecyclerView 항목에 3 개의 EditText가 있습니다.recyclerview의 다음 누름 버튼에서 초점 순서 변경

첫 번째 EditText에서 두 번째 및 세 번째로 포커스를 이동하고 싶습니다.

다음 RecyclerView 항목의 첫 번째 EditeText에 초점을 맞추고 싶습니다.

내 소프트 키패드의 다음 버튼을 누르면이 모든 과정이 수행됩니다.

enter image description here

답변

0

바로 옆에 EDITTEXT 예에서 IME 옵션을 설정

안드로이드 : 대해서는 imeOptions는 = "actionNext"

<EditText 
     android:id="@+id/gm_title" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_margin="5dp" 
     android:background="@drawable/coldo_text" 
     android:hint="@string/enter_title" 
     android:maxLines="1" 
     android:imeOptions="actionNext" 
     android:padding="5dp" 
     android:textColor="pigc7" 
     android:textSize="ads2" />