Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android:digits not allowing next button in keypad

Im using

android:digits="abcdefghijklmnopqrstuvwxyz. " 

and having one more EditText in the same screen when i press enter key in keypad the focus doesn't gets changed.

suppose if i remove the

 android:digits

the enter button works fine and moves to the next edit text.

like image 882
Sivakumar Purushothaman Avatar asked Oct 25 '13 11:10

Sivakumar Purushothaman


1 Answers

Add android:imeOptions="actionNext" in your EditText in xml

<EditText
        android:id="@+id/et_count"
        android:layout_width="100dp"
        android:singleLine="true"
        android:imeOptions="actionNext"
        android:layout_height="wrap_content" />
like image 174
Jitender Dev Avatar answered Oct 22 '22 05:10

Jitender Dev